LabelDateTimePicker.Designer.cs 4.5 KB

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