📄 protocolpanel.designer.cs
字号:
namespace GPCore
{
partial class ProtocolPanel
{
/// <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 Component Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
protected void InitializeComponent()
{
this.panel1 = new System.Windows.Forms.Panel();
this.chkSignin = new System.Windows.Forms.CheckBox();
this.chkAuto = new System.Windows.Forms.CheckBox();
this.txtUsername = new System.Windows.Forms.TextBox();
this.cmdCancel = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.txtPassword = new System.Windows.Forms.TextBox();
this.cmdOK = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// panel1
//
this.panel1.Controls.Add(this.chkSignin);
this.panel1.Controls.Add(this.chkAuto);
this.panel1.Controls.Add(this.txtUsername);
this.panel1.Controls.Add(this.cmdCancel);
this.panel1.Controls.Add(this.label2);
this.panel1.Controls.Add(this.txtPassword);
this.panel1.Controls.Add(this.cmdOK);
this.panel1.Controls.Add(this.label3);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(278, 105);
this.panel1.TabIndex = 0;
//
// chkSignin
//
this.chkSignin.AutoSize = true;
this.chkSignin.Location = new System.Drawing.Point(122, 53);
this.chkSignin.Name = "chkSignin";
this.chkSignin.Size = new System.Drawing.Size(81, 17);
this.chkSignin.TabIndex = 3;
this.chkSignin.Text = "Sign in now";
this.chkSignin.UseVisualStyleBackColor = true;
//
// chkAuto
//
this.chkAuto.AutoSize = true;
this.chkAuto.Location = new System.Drawing.Point(7, 53);
this.chkAuto.Name = "chkAuto";
this.chkAuto.Size = new System.Drawing.Size(83, 17);
this.chkAuto.TabIndex = 2;
this.chkAuto.Text = "Auto Sign in";
this.chkAuto.UseVisualStyleBackColor = true;
//
// txtUsername
//
this.txtUsername.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtUsername.Location = new System.Drawing.Point(94, 3);
this.txtUsername.Name = "txtUsername";
this.txtUsername.Size = new System.Drawing.Size(181, 20);
this.txtUsername.TabIndex = 0;
//
// cmdCancel
//
this.cmdCancel.Location = new System.Drawing.Point(208, 76);
this.cmdCancel.Name = "cmdCancel";
this.cmdCancel.Size = new System.Drawing.Size(67, 26);
this.cmdCancel.TabIndex = 5;
this.cmdCancel.Text = "&Cancel";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label2.Location = new System.Drawing.Point(4, 6);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(55, 13);
this.label2.TabIndex = 2;
this.label2.Text = "Username";
//
// txtPassword
//
this.txtPassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.txtPassword.Location = new System.Drawing.Point(94, 29);
this.txtPassword.Name = "txtPassword";
this.txtPassword.PasswordChar = '*';
this.txtPassword.Size = new System.Drawing.Size(181, 20);
this.txtPassword.TabIndex = 1;
//
// cmdOK
//
this.cmdOK.Location = new System.Drawing.Point(136, 76);
this.cmdOK.Name = "cmdOK";
this.cmdOK.Size = new System.Drawing.Size(66, 26);
this.cmdOK.TabIndex = 4;
this.cmdOK.Text = "&OK";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label3.Location = new System.Drawing.Point(4, 32);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(53, 13);
this.label3.TabIndex = 5;
this.label3.Text = "Password";
//
// AccountPanel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.panel1);
this.Name = "AccountPanel";
this.Size = new System.Drawing.Size(278, 105);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
}
#endregion
/// <summary>
/// The main panel
/// </summary>
protected System.Windows.Forms.Panel panel1;
/// <summary>
/// The textbox for the username
/// </summary>
protected System.Windows.Forms.TextBox txtUsername;
/// <summary>
/// The label for the username
/// </summary>
protected System.Windows.Forms.Label label2;
/// <summary>
/// The textbox for the password
/// </summary>
protected System.Windows.Forms.TextBox txtPassword;
/// <summary>
/// The label for the password
/// </summary>
protected System.Windows.Forms.Label label3;
/// <summary>
/// The cancel button
/// </summary>
protected System.Windows.Forms.Button cmdCancel;
/// <summary>
/// The Ok button
/// </summary>
protected System.Windows.Forms.Button cmdOK;
/// <summary>
/// The checkbox to see if it should signin now
/// </summary>
protected System.Windows.Forms.CheckBox chkSignin;
/// <summary>
/// The checkbox to see if it should automatically load
/// </summary>
protected System.Windows.Forms.CheckBox chkAuto;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -