LabelComboBox.Designer.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. namespace Core.Mes.Client.Comm.Control
  2. {
  3. partial class LabelComboBox
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.panel1 = new System.Windows.Forms.Panel();
  29. this.checkBox1 = new System.Windows.Forms.CheckBox();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.panel2 = new System.Windows.Forms.Panel();
  32. this.comboBox1 = new Infragistics.Win.UltraWinEditors.UltraComboEditor();
  33. this.panel1.SuspendLayout();
  34. this.panel2.SuspendLayout();
  35. ((System.ComponentModel.ISupportInitialize)(this.comboBox1)).BeginInit();
  36. this.SuspendLayout();
  37. //
  38. // panel1
  39. //
  40. this.panel1.AutoSize = true;
  41. this.panel1.Controls.Add(this.checkBox1);
  42. this.panel1.Controls.Add(this.label1);
  43. this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
  44. this.panel1.Location = new System.Drawing.Point(0, 0);
  45. this.panel1.Name = "panel1";
  46. this.panel1.Size = new System.Drawing.Size(71, 22);
  47. this.panel1.TabIndex = 2;
  48. //
  49. // checkBox1
  50. //
  51. this.checkBox1.AutoSize = true;
  52. this.checkBox1.Location = new System.Drawing.Point(4, 4);
  53. this.checkBox1.Name = "checkBox1";
  54. this.checkBox1.Size = new System.Drawing.Size(15, 14);
  55. this.checkBox1.TabIndex = 0;
  56. this.checkBox1.UseVisualStyleBackColor = true;
  57. this.checkBox1.VisibleChanged += new System.EventHandler(this.checkBox1_VisibleChanged);
  58. this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
  59. //
  60. // label1
  61. //
  62. this.label1.AutoSize = true;
  63. this.label1.Location = new System.Drawing.Point(21, 4);
  64. this.label1.Name = "label1";
  65. this.label1.Size = new System.Drawing.Size(47, 12);
  66. this.label1.TabIndex = 2;
  67. this.label1.Text = "Caption";
  68. this.label1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.label1_MouseClick);
  69. //
  70. // panel2
  71. //
  72. this.panel2.Controls.Add(this.comboBox1);
  73. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  74. this.panel2.Location = new System.Drawing.Point(71, 0);
  75. this.panel2.Name = "panel2";
  76. this.panel2.Size = new System.Drawing.Size(145, 22);
  77. this.panel2.TabIndex = 3;
  78. //
  79. // comboBox1
  80. //
  81. this.comboBox1.AutoCompleteMode = Infragistics.Win.AutoCompleteMode.None;
  82. this.comboBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  83. this.comboBox1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
  84. this.comboBox1.Location = new System.Drawing.Point(0, 0);
  85. this.comboBox1.Name = "comboBox1";
  86. this.comboBox1.Size = new System.Drawing.Size(145, 21);
  87. this.comboBox1.TabIndex = 0;
  88. this.comboBox1.TextChanged += new System.EventHandler(this.comboBox1_TextChanged);
  89. this.comboBox1.ValueChanged += new System.EventHandler(this.comboBox1_SelectedValueChanged);
  90. //
  91. // LabelComboBox
  92. //
  93. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  94. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  95. this.Controls.Add(this.panel2);
  96. this.Controls.Add(this.panel1);
  97. this.Name = "LabelComboBox";
  98. this.Size = new System.Drawing.Size(216, 22);
  99. this.panel1.ResumeLayout(false);
  100. this.panel1.PerformLayout();
  101. this.panel2.ResumeLayout(false);
  102. this.panel2.PerformLayout();
  103. ((System.ComponentModel.ISupportInitialize)(this.comboBox1)).EndInit();
  104. this.ResumeLayout(false);
  105. this.PerformLayout();
  106. }
  107. #endregion
  108. private System.Windows.Forms.Panel panel1;
  109. private System.Windows.Forms.Panel panel2;
  110. private System.Windows.Forms.CheckBox checkBox1;
  111. private System.Windows.Forms.Label label1;
  112. private Infragistics.Win.UltraWinEditors.UltraComboEditor comboBox1;
  113. }
  114. }