12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- namespace WindowsFormsDateTimePicker
- {
- partial class Form1
- {
-
-
-
- private System.ComponentModel.IContainer components = null;
-
-
-
-
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
-
-
-
-
- private void InitializeComponent()
- {
- this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
- this.textBox1 = new System.Windows.Forms.TextBox();
- this.SuspendLayout();
-
-
-
- this.dateTimePicker1.Location = new System.Drawing.Point(56, 44);
- this.dateTimePicker1.Name = "dateTimePicker1";
- this.dateTimePicker1.Size = new System.Drawing.Size(200, 25);
- this.dateTimePicker1.TabIndex = 0;
-
-
-
- this.textBox1.Location = new System.Drawing.Point(56, 98);
- this.textBox1.Name = "textBox1";
- this.textBox1.Size = new System.Drawing.Size(200, 25);
- this.textBox1.TabIndex = 1;
-
-
-
- this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(321, 156);
- this.Controls.Add(this.textBox1);
- this.Controls.Add(this.dateTimePicker1);
- this.Name = "Form1";
- this.Text = "Form1";
- this.Load += new System.EventHandler(this.Form1_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.DateTimePicker dateTimePicker1;
- private System.Windows.Forms.TextBox textBox1;
- }
- }
|