📄 form1.designer.cs
字号:
namespace UserTokens
{
partial class Form1
{
/// <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.components = new System.ComponentModel.Container();
this.label1 = new System.Windows.Forms.Label();
this.textBoxUsername = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.textBoxPassword = new System.Windows.Forms.TextBox();
this.buttonShowToken = new System.Windows.Forms.Button();
this.textBoxToken = new System.Windows.Forms.TextBox();
this.errorProvider1 = new System.Windows.Forms.ErrorProvider(this.components);
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(24, 48);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(58, 13);
this.label1.TabIndex = 0;
this.label1.Text = "Username:";
//
// textBoxUsername
//
this.textBoxUsername.Location = new System.Drawing.Point(114, 48);
this.textBoxUsername.Name = "textBoxUsername";
this.textBoxUsername.Size = new System.Drawing.Size(144, 20);
this.textBoxUsername.TabIndex = 1;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(27, 88);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(56, 13);
this.label2.TabIndex = 2;
this.label2.Text = "Password:";
//
// textBoxPassword
//
this.textBoxPassword.Location = new System.Drawing.Point(114, 88);
this.textBoxPassword.Name = "textBoxPassword";
this.textBoxPassword.PasswordChar = '*';
this.textBoxPassword.Size = new System.Drawing.Size(144, 20);
this.textBoxPassword.TabIndex = 3;
this.textBoxPassword.Validated += new System.EventHandler(this.textBoxPassword_Validated);
this.textBoxPassword.Validating += new System.ComponentModel.CancelEventHandler(this.textBoxPassword_Validating);
//
// buttonShowToken
//
this.buttonShowToken.Location = new System.Drawing.Point(102, 130);
this.buttonShowToken.Name = "buttonShowToken";
this.buttonShowToken.Size = new System.Drawing.Size(75, 23);
this.buttonShowToken.TabIndex = 4;
this.buttonShowToken.Text = "Show Token";
this.buttonShowToken.UseVisualStyleBackColor = true;
this.buttonShowToken.Click += new System.EventHandler(this.buttonShowToken_Click);
//
// textBoxToken
//
this.textBoxToken.Location = new System.Drawing.Point(12, 173);
this.textBoxToken.Name = "textBoxToken";
this.textBoxToken.ReadOnly = true;
this.textBoxToken.Size = new System.Drawing.Size(268, 20);
this.textBoxToken.TabIndex = 5;
//
// errorProvider1
//
this.errorProvider1.ContainerControl = this;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoValidate = System.Windows.Forms.AutoValidate.EnablePreventFocusChange;
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.Add(this.textBoxToken);
this.Controls.Add(this.buttonShowToken);
this.Controls.Add(this.textBoxPassword);
this.Controls.Add(this.label2);
this.Controls.Add(this.textBoxUsername);
this.Controls.Add(this.label1);
this.Name = "Form1";
this.Text = "User Tokens";
((System.ComponentModel.ISupportInitialize)(this.errorProvider1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox textBoxUsername;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox textBoxPassword;
private System.Windows.Forms.Button buttonShowToken;
private System.Windows.Forms.TextBox textBoxToken;
private System.Windows.Forms.ErrorProvider errorProvider1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -