LabelTextBox.Designer.cs 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. namespace Core.Mes.Client.Comm.Control
  2. {
  3. partial class LabelTextBox
  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.label1 = new System.Windows.Forms.Label();
  29. this.textBox1 = new System.Windows.Forms.TextBox();
  30. this.panel1 = new System.Windows.Forms.Panel();
  31. this.checkBox1 = new System.Windows.Forms.CheckBox();
  32. this.panel2 = new System.Windows.Forms.Panel();
  33. this.panel1.SuspendLayout();
  34. this.panel2.SuspendLayout();
  35. this.SuspendLayout();
  36. //
  37. // label1
  38. //
  39. this.label1.AutoSize = true;
  40. this.label1.Location = new System.Drawing.Point(21, 4);
  41. this.label1.Name = "label1";
  42. this.label1.Size = new System.Drawing.Size(47, 12);
  43. this.label1.TabIndex = 0;
  44. this.label1.Text = "Caption";
  45. this.label1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.label1_MouseClick);
  46. //
  47. // textBox1
  48. //
  49. this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
  50. this.textBox1.Enabled = false;
  51. this.textBox1.Location = new System.Drawing.Point(0, 0);
  52. this.textBox1.Name = "textBox1";
  53. this.textBox1.Size = new System.Drawing.Size(126, 21);
  54. this.textBox1.TabIndex = 1;
  55. this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
  56. //
  57. // panel1
  58. //
  59. this.panel1.AutoSize = true;
  60. this.panel1.Controls.Add(this.checkBox1);
  61. this.panel1.Controls.Add(this.label1);
  62. this.panel1.Dock = System.Windows.Forms.DockStyle.Left;
  63. this.panel1.Location = new System.Drawing.Point(0, 0);
  64. this.panel1.Name = "panel1";
  65. this.panel1.Size = new System.Drawing.Size(71, 21);
  66. this.panel1.TabIndex = 2;
  67. //
  68. // checkBox1
  69. //
  70. this.checkBox1.AutoSize = true;
  71. this.checkBox1.Location = new System.Drawing.Point(4, 4);
  72. this.checkBox1.Name = "checkBox1";
  73. this.checkBox1.Size = new System.Drawing.Size(15, 14);
  74. this.checkBox1.TabIndex = 1;
  75. this.checkBox1.UseVisualStyleBackColor = true;
  76. this.checkBox1.VisibleChanged += new System.EventHandler(this.checkBox1_VisibleChanged);
  77. this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
  78. //
  79. // panel2
  80. //
  81. this.panel2.Controls.Add(this.textBox1);
  82. this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
  83. this.panel2.Location = new System.Drawing.Point(71, 0);
  84. this.panel2.Name = "panel2";
  85. this.panel2.Size = new System.Drawing.Size(126, 21);
  86. this.panel2.TabIndex = 3;
  87. //
  88. // LabelTextBox
  89. //
  90. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  91. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  92. this.Controls.Add(this.panel2);
  93. this.Controls.Add(this.panel1);
  94. this.Name = "LabelTextBox";
  95. this.Size = new System.Drawing.Size(197, 21);
  96. this.panel1.ResumeLayout(false);
  97. this.panel1.PerformLayout();
  98. this.panel2.ResumeLayout(false);
  99. this.panel2.PerformLayout();
  100. this.ResumeLayout(false);
  101. this.PerformLayout();
  102. }
  103. #endregion
  104. private System.Windows.Forms.Label label1;
  105. private System.Windows.Forms.TextBox textBox1;
  106. private System.Windows.Forms.Panel panel1;
  107. private System.Windows.Forms.Panel panel2;
  108. private System.Windows.Forms.CheckBox checkBox1;
  109. }
  110. }