📄 form1.designer.cs
字号:
namespace CalendarConverter
{
partial class frmMain
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.tcMain = new System.Windows.Forms.TabControl();
this.tpConvert = new System.Windows.Forms.TabPage();
this.btnClear = new System.Windows.Forms.Button();
this.btnConverter = new System.Windows.Forms.Button();
this.lblInfo = new System.Windows.Forms.Label();
this.cbbConvertClass = new System.Windows.Forms.ComboBox();
this.txtDay = new System.Windows.Forms.TextBox();
this.txtMonth = new System.Windows.Forms.TextBox();
this.txtYear = new System.Windows.Forms.TextBox();
this.lblDay = new System.Windows.Forms.Label();
this.lblMonth = new System.Windows.Forms.Label();
this.lblYear = new System.Windows.Forms.Label();
this.lblWelcome = new System.Windows.Forms.Label();
this.lblTitle = new System.Windows.Forms.Label();
this.tpCR = new System.Windows.Forms.TabPage();
this.tcMain.SuspendLayout();
this.tpConvert.SuspendLayout();
this.SuspendLayout();
//
// tcMain
//
this.tcMain.Controls.Add(this.tpConvert);
this.tcMain.Controls.Add(this.tpCR);
this.tcMain.Location = new System.Drawing.Point(0, 0);
this.tcMain.Name = "tcMain";
this.tcMain.SelectedIndex = 0;
this.tcMain.Size = new System.Drawing.Size(240, 294);
this.tcMain.TabIndex = 0;
//
// tpConvert
//
this.tpConvert.Controls.Add(this.btnClear);
this.tpConvert.Controls.Add(this.btnConverter);
this.tpConvert.Controls.Add(this.lblInfo);
this.tpConvert.Controls.Add(this.cbbConvertClass);
this.tpConvert.Controls.Add(this.txtDay);
this.tpConvert.Controls.Add(this.txtMonth);
this.tpConvert.Controls.Add(this.txtYear);
this.tpConvert.Controls.Add(this.lblDay);
this.tpConvert.Controls.Add(this.lblMonth);
this.tpConvert.Controls.Add(this.lblYear);
this.tpConvert.Controls.Add(this.lblWelcome);
this.tpConvert.Controls.Add(this.lblTitle);
this.tpConvert.Location = new System.Drawing.Point(0, 0);
this.tpConvert.Name = "tpConvert";
this.tpConvert.Size = new System.Drawing.Size(240, 271);
this.tpConvert.Text = "Converter";
//
// btnClear
//
this.btnClear.Location = new System.Drawing.Point(147, 154);
this.btnClear.Name = "btnClear";
this.btnClear.Size = new System.Drawing.Size(72, 20);
this.btnClear.TabIndex = 5;
this.btnClear.Text = "Clear";
this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
//
// btnConverter
//
this.btnConverter.Location = new System.Drawing.Point(27, 154);
this.btnConverter.Name = "btnConverter";
this.btnConverter.Size = new System.Drawing.Size(72, 20);
this.btnConverter.TabIndex = 4;
this.btnConverter.Text = "Converter";
this.btnConverter.Click += new System.EventHandler(this.btnConverter_Click);
//
// lblInfo
//
this.lblInfo.Location = new System.Drawing.Point(7, 181);
this.lblInfo.Name = "lblInfo";
this.lblInfo.Size = new System.Drawing.Size(226, 84);
//
// cbbConvertClass
//
this.cbbConvertClass.Items.Add("to Chinese Calendar");
this.cbbConvertClass.Items.Add("to Gregorian Calendar");
this.cbbConvertClass.Location = new System.Drawing.Point(36, 120);
this.cbbConvertClass.Name = "cbbConvertClass";
this.cbbConvertClass.Size = new System.Drawing.Size(166, 22);
this.cbbConvertClass.TabIndex = 3;
//
// txtDay
//
this.txtDay.Location = new System.Drawing.Point(199, 93);
this.txtDay.MaxLength = 2;
this.txtDay.Name = "txtDay";
this.txtDay.Size = new System.Drawing.Size(20, 21);
this.txtDay.TabIndex = 2;
//
// txtMonth
//
this.txtMonth.Location = new System.Drawing.Point(134, 93);
this.txtMonth.MaxLength = 2;
this.txtMonth.Name = "txtMonth";
this.txtMonth.Size = new System.Drawing.Size(20, 21);
this.txtMonth.TabIndex = 1;
//
// txtYear
//
this.txtYear.Location = new System.Drawing.Point(36, 93);
this.txtYear.MaxLength = 4;
this.txtYear.Name = "txtYear";
this.txtYear.Size = new System.Drawing.Size(41, 21);
this.txtYear.TabIndex = 0;
//
// lblDay
//
this.lblDay.Location = new System.Drawing.Point(166, 95);
this.lblDay.Name = "lblDay";
this.lblDay.Size = new System.Drawing.Size(27, 20);
this.lblDay.Text = "Day";
//
// lblMonth
//
this.lblMonth.Location = new System.Drawing.Point(89, 95);
this.lblMonth.Name = "lblMonth";
this.lblMonth.Size = new System.Drawing.Size(39, 20);
this.lblMonth.Text = "Month";
//
// lblYear
//
this.lblYear.Location = new System.Drawing.Point(7, 95);
this.lblYear.Name = "lblYear";
this.lblYear.Size = new System.Drawing.Size(31, 20);
this.lblYear.Text = "Year";
//
// lblWelcome
//
this.lblWelcome.Location = new System.Drawing.Point(27, 70);
this.lblWelcome.Name = "lblWelcome";
this.lblWelcome.Size = new System.Drawing.Size(192, 20);
this.lblWelcome.Text = "Please Input the Date:";
//
// lblTitle
//
this.lblTitle.Font = new System.Drawing.Font("Tahoma", 14F, System.Drawing.FontStyle.Bold);
this.lblTitle.Location = new System.Drawing.Point(19, 24);
this.lblTitle.Name = "lblTitle";
this.lblTitle.Size = new System.Drawing.Size(195, 25);
this.lblTitle.Text = "Calendar Converter";
//
// tpCR
//
this.tpCR.Location = new System.Drawing.Point(0, 0);
this.tpCR.Name = "tpCR";
this.tpCR.Size = new System.Drawing.Size(232, 268);
this.tpCR.Text = "CopyRight";
//
// frmMain
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(240, 294);
this.Controls.Add(this.tcMain);
this.Name = "frmMain";
this.Text = "Calendar Converter";
this.Load += new System.EventHandler(this.frmMain_Load);
this.tcMain.ResumeLayout(false);
this.tpConvert.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TabControl tcMain;
private System.Windows.Forms.TabPage tpConvert;
private System.Windows.Forms.TextBox txtDay;
private System.Windows.Forms.TextBox txtYear;
private System.Windows.Forms.Label lblDay;
private System.Windows.Forms.Label lblYear;
private System.Windows.Forms.Label lblWelcome;
private System.Windows.Forms.Label lblTitle;
private System.Windows.Forms.TabPage tpCR;
private System.Windows.Forms.TextBox txtMonth;
private System.Windows.Forms.Label lblMonth;
private System.Windows.Forms.ComboBox cbbConvertClass;
private System.Windows.Forms.Button btnClear;
private System.Windows.Forms.Button btnConverter;
private System.Windows.Forms.Label lblInfo;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -