123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- namespace WindowsFormsMonthCalendar
- {
- partial class Form1
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要修改
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.monthCalendar1 = new System.Windows.Forms.MonthCalendar();
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.label1 = new System.Windows.Forms.Label();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.label2 = new System.Windows.Forms.Label();
- this.textBox2 = new System.Windows.Forms.TextBox();
- this.label3 = new System.Windows.Forms.Label();
- this.textBox3 = new System.Windows.Forms.TextBox();
- this.groupBox1.SuspendLayout();
- this.groupBox2.SuspendLayout();
- this.SuspendLayout();
- //
- // groupBox1
- //
- this.groupBox1.Controls.Add(this.monthCalendar1);
- this.groupBox1.Location = new System.Drawing.Point(12, 0);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Size = new System.Drawing.Size(273, 254);
- this.groupBox1.TabIndex = 0;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "日历控件";
- //
- // monthCalendar1
- //
- this.monthCalendar1.Location = new System.Drawing.Point(8, 30);
- this.monthCalendar1.Name = "monthCalendar1";
- this.monthCalendar1.TabIndex = 0;
- this.monthCalendar1.DateChanged += new System.Windows.Forms.DateRangeEventHandler(this.monthCalendar1_DateChanged);
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.textBox3);
- this.groupBox2.Controls.Add(this.label3);
- this.groupBox2.Controls.Add(this.textBox2);
- this.groupBox2.Controls.Add(this.label2);
- this.groupBox2.Controls.Add(this.textBox1);
- this.groupBox2.Controls.Add(this.label1);
- this.groupBox2.Location = new System.Drawing.Point(306, 66);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Size = new System.Drawing.Size(330, 159);
- this.groupBox2.TabIndex = 1;
- this.groupBox2.TabStop = false;
- this.groupBox2.Text = "详细信息";
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(7, 25);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(67, 15);
- this.label1.TabIndex = 0;
- this.label1.Text = "今天是:";
- //
- // textBox1
- //
- this.textBox1.Location = new System.Drawing.Point(80, 22);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(201, 25);
- this.textBox1.TabIndex = 1;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(7, 72);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(82, 15);
- this.label2.TabIndex = 2;
- this.label2.Text = "起始日期:";
- this.label2.Click += new System.EventHandler(this.label2_Click);
- //
- // textBox2
- //
- this.textBox2.Location = new System.Drawing.Point(80, 69);
- this.textBox2.Name = "textBox2";
- this.textBox2.Size = new System.Drawing.Size(201, 25);
- this.textBox2.TabIndex = 3;
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(7, 121);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(82, 15);
- this.label3.TabIndex = 4;
- this.label3.Text = "结束日期:";
- //
- // textBox3
- //
- this.textBox3.Location = new System.Drawing.Point(80, 118);
- this.textBox3.Name = "textBox3";
- this.textBox3.Size = new System.Drawing.Size(201, 25);
- this.textBox3.TabIndex = 5;
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(658, 275);
- this.Controls.Add(this.groupBox2);
- this.Controls.Add(this.groupBox1);
- this.Name = "Form1";
- this.Text = "Form1";
- this.Load += new System.EventHandler(this.Form1_Load);
- this.groupBox1.ResumeLayout(false);
- this.groupBox2.ResumeLayout(false);
- this.groupBox2.PerformLayout();
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.GroupBox groupBox1;
- private System.Windows.Forms.MonthCalendar monthCalendar1;
- private System.Windows.Forms.GroupBox groupBox2;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.TextBox textBox1;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox textBox3;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.TextBox textBox2;
- }
- }
|