📄 form1.designer.cs
字号:
namespace IDChecker
{
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.tpCheck = new System.Windows.Forms.TabPage();
this.lblInfo = new System.Windows.Forms.Label();
this.btnCheck = new System.Windows.Forms.Button();
this.btnClean = new System.Windows.Forms.Button();
this.panelSex = new System.Windows.Forms.Panel();
this.rbMan = new System.Windows.Forms.RadioButton();
this.rbWoman = new System.Windows.Forms.RadioButton();
this.txtID = new System.Windows.Forms.TextBox();
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.tpCheck.SuspendLayout();
this.panelSex.SuspendLayout();
this.SuspendLayout();
//
// tcMain
//
this.tcMain.Controls.Add(this.tpCheck);
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 = 10;
//
// tpCheck
//
this.tpCheck.Controls.Add(this.lblInfo);
this.tpCheck.Controls.Add(this.btnCheck);
this.tpCheck.Controls.Add(this.btnClean);
this.tpCheck.Controls.Add(this.panelSex);
this.tpCheck.Controls.Add(this.txtID);
this.tpCheck.Controls.Add(this.lblWelcome);
this.tpCheck.Controls.Add(this.lblTitle);
this.tpCheck.Location = new System.Drawing.Point(0, 0);
this.tpCheck.Name = "tpCheck";
this.tpCheck.Size = new System.Drawing.Size(240, 271);
this.tpCheck.Text = "Checker";
//
// lblInfo
//
this.lblInfo.Location = new System.Drawing.Point(3, 131);
this.lblInfo.Name = "lblInfo";
this.lblInfo.Size = new System.Drawing.Size(234, 50);
this.lblInfo.Text = "Information about the Check";
//
// btnCheck
//
this.btnCheck.Location = new System.Drawing.Point(138, 229);
this.btnCheck.Name = "btnCheck";
this.btnCheck.Size = new System.Drawing.Size(72, 20);
this.btnCheck.TabIndex = 12;
this.btnCheck.Text = "Check";
this.btnCheck.Click += new System.EventHandler(this.btnCheck_Click);
//
// btnClean
//
this.btnClean.Location = new System.Drawing.Point(138, 194);
this.btnClean.Name = "btnClean";
this.btnClean.Size = new System.Drawing.Size(72, 20);
this.btnClean.TabIndex = 11;
this.btnClean.Text = "Clear";
this.btnClean.Click += new System.EventHandler(this.btnClean_Click);
//
// panelSex
//
this.panelSex.Controls.Add(this.rbMan);
this.panelSex.Controls.Add(this.rbWoman);
this.panelSex.Location = new System.Drawing.Point(21, 184);
this.panelSex.Name = "panelSex";
this.panelSex.Size = new System.Drawing.Size(100, 74);
//
// rbMan
//
this.rbMan.Location = new System.Drawing.Point(7, 38);
this.rbMan.Name = "rbMan";
this.rbMan.Size = new System.Drawing.Size(73, 20);
this.rbMan.TabIndex = 1;
this.rbMan.Text = "Man";
//
// rbWoman
//
this.rbWoman.Location = new System.Drawing.Point(7, 15);
this.rbWoman.Name = "rbWoman";
this.rbWoman.Size = new System.Drawing.Size(73, 20);
this.rbWoman.TabIndex = 0;
this.rbWoman.Text = "Woman";
//
// txtID
//
this.txtID.Location = new System.Drawing.Point(21, 100);
this.txtID.Name = "txtID";
this.txtID.Size = new System.Drawing.Size(189, 21);
this.txtID.TabIndex = 10;
this.txtID.TextChanged += new System.EventHandler(this.txtID_TextChanged);
//
// lblWelcome
//
this.lblWelcome.Location = new System.Drawing.Point(21, 79);
this.lblWelcome.Name = "lblWelcome";
this.lblWelcome.Size = new System.Drawing.Size(189, 20);
this.lblWelcome.Text = "Please input the ID Number :";
//
// lblTitle
//
this.lblTitle.Font = new System.Drawing.Font("Tahoma", 14F, System.Drawing.FontStyle.Bold);
this.lblTitle.Location = new System.Drawing.Point(60, 29);
this.lblTitle.Name = "lblTitle";
this.lblTitle.Size = new System.Drawing.Size(116, 20);
this.lblTitle.Text = "ID Checker";
//
// 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.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(240, 294);
this.Controls.Add(this.tcMain);
this.MinimizeBox = false;
this.Name = "frmMain";
this.Text = "ID Checker";
this.tcMain.ResumeLayout(false);
this.tpCheck.ResumeLayout(false);
this.panelSex.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.TabControl tcMain;
private System.Windows.Forms.TabPage tpCheck;
private System.Windows.Forms.Label lblInfo;
private System.Windows.Forms.Button btnCheck;
private System.Windows.Forms.Button btnClean;
private System.Windows.Forms.Panel panelSex;
private System.Windows.Forms.RadioButton rbMan;
private System.Windows.Forms.RadioButton rbWoman;
private System.Windows.Forms.TextBox txtID;
private System.Windows.Forms.Label lblWelcome;
private System.Windows.Forms.Label lblTitle;
private System.Windows.Forms.TabPage tpCR;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -