LabelNumericText.Designer.cs 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. namespace Core.Mes.Client.Comm.Control
  2. {
  3. partial class LabelNumericText
  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.ultraNumericEditor1 = new Infragistics.Win.UltraWinEditors.UltraNumericEditor();
  33. this.panel1.SuspendLayout();
  34. this.panel2.SuspendLayout();
  35. ((System.ComponentModel.ISupportInitialize)(this.ultraNumericEditor1)).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, 21);
  47. this.panel1.TabIndex = 0;
  48. //
  49. // checkBox1
  50. //
  51. this.checkBox1.AutoSize = true;
  52. this.checkBox1.Location = new System.Drawing.Point(4, 5);
  53. this.checkBox1.Name = "checkBox1";
  54. this.checkBox1.Size = new System.Drawing.Size(15, 14);
  55. this.checkBox1.TabIndex = 1;
  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, 5);
  64. this.label1.Name = "label1";
  65. this.label1.Size = new System.Drawing.Size(47, 12);
  66. this.label1.TabIndex = 0;
  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.ultraNumericEditor1);
  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(126, 21);
  77. this.panel2.TabIndex = 1;
  78. //
  79. // ultraNumericEditor1
  80. //
  81. this.ultraNumericEditor1.Dock = System.Windows.Forms.DockStyle.Fill;
  82. this.ultraNumericEditor1.Enabled = false;
  83. this.ultraNumericEditor1.Location = new System.Drawing.Point(0, 0);
  84. this.ultraNumericEditor1.Name = "ultraNumericEditor1";
  85. this.ultraNumericEditor1.Nullable = true;
  86. this.ultraNumericEditor1.Size = new System.Drawing.Size(126, 21);
  87. this.ultraNumericEditor1.TabIndex = 0;
  88. this.ultraNumericEditor1.ValueChanged += new System.EventHandler(this.ultraNumericEditor1_ValueChanged_1);
  89. //
  90. // LabelNumericText
  91. //
  92. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  93. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  94. this.Controls.Add(this.panel2);
  95. this.Controls.Add(this.panel1);
  96. this.Name = "LabelNumericText";
  97. this.Size = new System.Drawing.Size(197, 21);
  98. this.panel1.ResumeLayout(false);
  99. this.panel1.PerformLayout();
  100. this.panel2.ResumeLayout(false);
  101. this.panel2.PerformLayout();
  102. ((System.ComponentModel.ISupportInitialize)(this.ultraNumericEditor1)).EndInit();
  103. this.ResumeLayout(false);
  104. this.PerformLayout();
  105. }
  106. #endregion
  107. private System.Windows.Forms.Panel panel1;
  108. private System.Windows.Forms.Panel panel2;
  109. private System.Windows.Forms.Label label1;
  110. private Infragistics.Win.UltraWinEditors.UltraNumericEditor ultraNumericEditor1;
  111. private System.Windows.Forms.CheckBox checkBox1;
  112. }
  113. }