📄 form1.designer.cs
字号:
namespace myCombo_src
{
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.maskedTextBox1 = new System.Windows.Forms.MaskedTextBox();
this.button1 = new System.Windows.Forms.Button();
this.userControlTime1 = new myCombo_src.UserControlTime();
this.dateEdit1 = new myCombo_src.DateEdit();
this.SuspendLayout();
//
// maskedTextBox1
//
this.maskedTextBox1.Location = new System.Drawing.Point(12, 123);
this.maskedTextBox1.Name = "maskedTextBox1";
this.maskedTextBox1.Size = new System.Drawing.Size(114, 21);
this.maskedTextBox1.TabIndex = 1;
//
// button1
//
this.button1.Location = new System.Drawing.Point(182, 121);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 3;
this.button1.Text = "button1";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// userControlTime1
//
this.userControlTime1.Location = new System.Drawing.Point(23, 182);
this.userControlTime1.MaskType = myCombo_src.MaskType.Long;
this.userControlTime1.Name = "userControlTime1";
this.userControlTime1.Size = new System.Drawing.Size(206, 27);
this.userControlTime1.TabIndex = 5;
this.userControlTime1.Value = null;
this.userControlTime1.Load += new System.EventHandler(this.userControlTime1_Load);
//
// dateEdit1
//
this.dateEdit1.InsertKeyMode = System.Windows.Forms.InsertKeyMode.Overwrite;
this.dateEdit1.IsLongType = true;
this.dateEdit1.Location = new System.Drawing.Point(12, 51);
this.dateEdit1.Mask = "0000-00-00 00:00";
this.dateEdit1.MaskType = myCombo_src.MaskType.Long;
this.dateEdit1.Name = "dateEdit1";
this.dateEdit1.PromptChar = '0';
this.dateEdit1.ResetOnSpace = false;
this.dateEdit1.Size = new System.Drawing.Size(114, 21);
this.dateEdit1.TabIndex = 4;
this.dateEdit1.TextMaskFormat = System.Windows.Forms.MaskFormat.IncludePromptAndLiterals;
this.dateEdit1.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.dateEdit1_KeyPress);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.Add(this.userControlTime1);
this.Controls.Add(this.dateEdit1);
this.Controls.Add(this.button1);
this.Controls.Add(this.maskedTextBox1);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MaskedTextBox maskedTextBox1;
private System.Windows.Forms.Button button1;
private DateEdit dateEdit1;
private UserControlTime userControlTime1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -