RuleSelector.Designer.cs 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. namespace OTSIncAReportApp._1_UI.OTSReportExport
  2. {
  3. partial class RuleSelector
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.panel1 = new System.Windows.Forms.Panel();
  29. this.button2 = new System.Windows.Forms.Button();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.checkedListBox1 = new System.Windows.Forms.CheckedListBox();
  32. this.checkBox1 = new System.Windows.Forms.CheckBox();
  33. this.panel1.SuspendLayout();
  34. this.SuspendLayout();
  35. //
  36. // panel1
  37. //
  38. this.panel1.Controls.Add(this.checkBox1);
  39. this.panel1.Controls.Add(this.button2);
  40. this.panel1.Controls.Add(this.button1);
  41. this.panel1.Controls.Add(this.checkedListBox1);
  42. this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
  43. this.panel1.Location = new System.Drawing.Point(0, 0);
  44. this.panel1.Name = "panel1";
  45. this.panel1.Size = new System.Drawing.Size(233, 345);
  46. this.panel1.TabIndex = 0;
  47. //
  48. // button2
  49. //
  50. this.button2.Location = new System.Drawing.Point(149, 317);
  51. this.button2.Name = "button2";
  52. this.button2.Size = new System.Drawing.Size(81, 22);
  53. this.button2.TabIndex = 4;
  54. this.button2.Text = "取消";
  55. this.button2.UseVisualStyleBackColor = true;
  56. this.button2.Click += new System.EventHandler(this.button2_Click);
  57. //
  58. // button1
  59. //
  60. this.button1.Location = new System.Drawing.Point(62, 317);
  61. this.button1.Name = "button1";
  62. this.button1.Size = new System.Drawing.Size(81, 22);
  63. this.button1.TabIndex = 3;
  64. this.button1.Text = "确定";
  65. this.button1.UseVisualStyleBackColor = true;
  66. this.button1.Click += new System.EventHandler(this.button1_Click);
  67. //
  68. // checkedListBox1
  69. //
  70. this.checkedListBox1.FormattingEnabled = true;
  71. this.checkedListBox1.Location = new System.Drawing.Point(3, 3);
  72. this.checkedListBox1.Name = "checkedListBox1";
  73. this.checkedListBox1.Size = new System.Drawing.Size(227, 308);
  74. this.checkedListBox1.TabIndex = 2;
  75. //
  76. // checkBox1
  77. //
  78. this.checkBox1.AutoSize = true;
  79. this.checkBox1.Location = new System.Drawing.Point(3, 321);
  80. this.checkBox1.Name = "checkBox1";
  81. this.checkBox1.Size = new System.Drawing.Size(48, 16);
  82. this.checkBox1.TabIndex = 5;
  83. this.checkBox1.Text = "全选";
  84. this.checkBox1.UseVisualStyleBackColor = true;
  85. this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
  86. //
  87. // RuleSelector
  88. //
  89. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  90. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  91. this.ClientSize = new System.Drawing.Size(233, 345);
  92. this.Controls.Add(this.panel1);
  93. this.Name = "RuleSelector";
  94. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  95. this.Text = "规则选择";
  96. this.Load += new System.EventHandler(this.RuleSelector_Load);
  97. this.panel1.ResumeLayout(false);
  98. this.panel1.PerformLayout();
  99. this.ResumeLayout(false);
  100. }
  101. #endregion
  102. private System.Windows.Forms.Panel panel1;
  103. private System.Windows.Forms.CheckedListBox checkedListBox1;
  104. private System.Windows.Forms.Button button1;
  105. private System.Windows.Forms.Button button2;
  106. private System.Windows.Forms.CheckBox checkBox1;
  107. }
  108. }