Form1.Designer.cs 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. namespace WindowsFormsMonthCalendar
  2. {
  3. partial class Form1
  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 Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.groupBox1 = new System.Windows.Forms.GroupBox();
  29. this.monthCalendar1 = new System.Windows.Forms.MonthCalendar();
  30. this.groupBox2 = new System.Windows.Forms.GroupBox();
  31. this.label1 = new System.Windows.Forms.Label();
  32. this.textBox1 = new System.Windows.Forms.TextBox();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.textBox2 = new System.Windows.Forms.TextBox();
  35. this.label3 = new System.Windows.Forms.Label();
  36. this.textBox3 = new System.Windows.Forms.TextBox();
  37. this.groupBox1.SuspendLayout();
  38. this.groupBox2.SuspendLayout();
  39. this.SuspendLayout();
  40. //
  41. // groupBox1
  42. //
  43. this.groupBox1.Controls.Add(this.monthCalendar1);
  44. this.groupBox1.Location = new System.Drawing.Point(12, 0);
  45. this.groupBox1.Name = "groupBox1";
  46. this.groupBox1.Size = new System.Drawing.Size(273, 254);
  47. this.groupBox1.TabIndex = 0;
  48. this.groupBox1.TabStop = false;
  49. this.groupBox1.Text = "日历控件";
  50. //
  51. // monthCalendar1
  52. //
  53. this.monthCalendar1.Location = new System.Drawing.Point(8, 30);
  54. this.monthCalendar1.Name = "monthCalendar1";
  55. this.monthCalendar1.TabIndex = 0;
  56. this.monthCalendar1.DateChanged += new System.Windows.Forms.DateRangeEventHandler(this.monthCalendar1_DateChanged);
  57. //
  58. // groupBox2
  59. //
  60. this.groupBox2.Controls.Add(this.textBox3);
  61. this.groupBox2.Controls.Add(this.label3);
  62. this.groupBox2.Controls.Add(this.textBox2);
  63. this.groupBox2.Controls.Add(this.label2);
  64. this.groupBox2.Controls.Add(this.textBox1);
  65. this.groupBox2.Controls.Add(this.label1);
  66. this.groupBox2.Location = new System.Drawing.Point(306, 66);
  67. this.groupBox2.Name = "groupBox2";
  68. this.groupBox2.Size = new System.Drawing.Size(330, 159);
  69. this.groupBox2.TabIndex = 1;
  70. this.groupBox2.TabStop = false;
  71. this.groupBox2.Text = "详细信息";
  72. //
  73. // label1
  74. //
  75. this.label1.AutoSize = true;
  76. this.label1.Location = new System.Drawing.Point(7, 25);
  77. this.label1.Name = "label1";
  78. this.label1.Size = new System.Drawing.Size(67, 15);
  79. this.label1.TabIndex = 0;
  80. this.label1.Text = "今天是:";
  81. //
  82. // textBox1
  83. //
  84. this.textBox1.Location = new System.Drawing.Point(80, 22);
  85. this.textBox1.Name = "textBox1";
  86. this.textBox1.Size = new System.Drawing.Size(201, 25);
  87. this.textBox1.TabIndex = 1;
  88. //
  89. // label2
  90. //
  91. this.label2.AutoSize = true;
  92. this.label2.Location = new System.Drawing.Point(7, 72);
  93. this.label2.Name = "label2";
  94. this.label2.Size = new System.Drawing.Size(82, 15);
  95. this.label2.TabIndex = 2;
  96. this.label2.Text = "起始日期:";
  97. this.label2.Click += new System.EventHandler(this.label2_Click);
  98. //
  99. // textBox2
  100. //
  101. this.textBox2.Location = new System.Drawing.Point(80, 69);
  102. this.textBox2.Name = "textBox2";
  103. this.textBox2.Size = new System.Drawing.Size(201, 25);
  104. this.textBox2.TabIndex = 3;
  105. //
  106. // label3
  107. //
  108. this.label3.AutoSize = true;
  109. this.label3.Location = new System.Drawing.Point(7, 121);
  110. this.label3.Name = "label3";
  111. this.label3.Size = new System.Drawing.Size(82, 15);
  112. this.label3.TabIndex = 4;
  113. this.label3.Text = "结束日期:";
  114. //
  115. // textBox3
  116. //
  117. this.textBox3.Location = new System.Drawing.Point(80, 118);
  118. this.textBox3.Name = "textBox3";
  119. this.textBox3.Size = new System.Drawing.Size(201, 25);
  120. this.textBox3.TabIndex = 5;
  121. //
  122. // Form1
  123. //
  124. this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
  125. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  126. this.ClientSize = new System.Drawing.Size(658, 275);
  127. this.Controls.Add(this.groupBox2);
  128. this.Controls.Add(this.groupBox1);
  129. this.Name = "Form1";
  130. this.Text = "Form1";
  131. this.Load += new System.EventHandler(this.Form1_Load);
  132. this.groupBox1.ResumeLayout(false);
  133. this.groupBox2.ResumeLayout(false);
  134. this.groupBox2.PerformLayout();
  135. this.ResumeLayout(false);
  136. }
  137. #endregion
  138. private System.Windows.Forms.GroupBox groupBox1;
  139. private System.Windows.Forms.MonthCalendar monthCalendar1;
  140. private System.Windows.Forms.GroupBox groupBox2;
  141. private System.Windows.Forms.Label label2;
  142. private System.Windows.Forms.TextBox textBox1;
  143. private System.Windows.Forms.Label label1;
  144. private System.Windows.Forms.TextBox textBox3;
  145. private System.Windows.Forms.Label label3;
  146. private System.Windows.Forms.TextBox textBox2;
  147. }
  148. }