📄 loginform.designer.cs
字号:
namespace MyNote
{
partial class LoginForm
{
/// <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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LoginForm));
this.button1 = new System.Windows.Forms.Button();
this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
this.用户选择栏ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.任务显示ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.任务隐藏ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.控制台ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.退出MyNoteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.textBox1 = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.textBox2 = new System.Windows.Forms.TextBox();
this.button2 = new System.Windows.Forms.Button();
this.label3 = new System.Windows.Forms.Label();
this.控制台ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
this.contextMenuStrip1.SuspendLayout();
this.SuspendLayout();
//
// button1
//
this.button1.Location = new System.Drawing.Point(58, 134);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(120, 30);
this.button1.TabIndex = 0;
this.button1.Text = "确定";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// notifyIcon1
//
this.notifyIcon1.ContextMenuStrip = this.contextMenuStrip1;
this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
this.notifyIcon1.Text = "MyNote";
this.notifyIcon1.Visible = true;
//
// contextMenuStrip1
//
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.用户选择栏ToolStripMenuItem,
this.任务显示ToolStripMenuItem,
this.任务隐藏ToolStripMenuItem,
this.控制台ToolStripMenuItem,
this.控制台ToolStripMenuItem1,
this.退出MyNoteToolStripMenuItem});
this.contextMenuStrip1.Name = "contextMenuStrip1";
this.contextMenuStrip1.Size = new System.Drawing.Size(131, 136);
//
// 用户选择栏ToolStripMenuItem
//
this.用户选择栏ToolStripMenuItem.Name = "用户选择栏ToolStripMenuItem";
this.用户选择栏ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.用户选择栏ToolStripMenuItem.Text = "用户登陆";
this.用户选择栏ToolStripMenuItem.Click += new System.EventHandler(this.用户选择栏ToolStripMenuItem_Click);
//
// 任务显示ToolStripMenuItem
//
this.任务显示ToolStripMenuItem.Name = "任务显示ToolStripMenuItem";
this.任务显示ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.任务显示ToolStripMenuItem.Text = "任务显示";
this.任务显示ToolStripMenuItem.Click += new System.EventHandler(this.任务显示ToolStripMenuItem_Click);
//
// 任务隐藏ToolStripMenuItem
//
this.任务隐藏ToolStripMenuItem.Name = "任务隐藏ToolStripMenuItem";
this.任务隐藏ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.任务隐藏ToolStripMenuItem.Text = "任务隐藏";
this.任务隐藏ToolStripMenuItem.Click += new System.EventHandler(this.任务隐藏ToolStripMenuItem_Click);
//
// 控制台ToolStripMenuItem
//
this.控制台ToolStripMenuItem.Name = "控制台ToolStripMenuItem";
this.控制台ToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.控制台ToolStripMenuItem.Text = "Note管理";
this.控制台ToolStripMenuItem.Click += new System.EventHandler(this.控制台ToolStripMenuItem_Click);
//
// 退出MyNoteToolStripMenuItem
//
this.退出MyNoteToolStripMenuItem.Name = "退出MyNoteToolStripMenuItem";
this.退出MyNoteToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
this.退出MyNoteToolStripMenuItem.Text = "退出MyNote";
this.退出MyNoteToolStripMenuItem.Click += new System.EventHandler(this.退出MyNoteToolStripMenuItem_Click);
//
// textBox1
//
this.textBox1.Location = new System.Drawing.Point(160, 55);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(175, 21);
this.textBox1.TabIndex = 1;
this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(56, 58);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(41, 12);
this.label1.TabIndex = 2;
this.label1.Text = "用户名";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(56, 100);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(41, 12);
this.label2.TabIndex = 3;
this.label2.Text = "密 码";
//
// textBox2
//
this.textBox2.Location = new System.Drawing.Point(160, 97);
this.textBox2.Name = "textBox2";
this.textBox2.PasswordChar = '★';
this.textBox2.Size = new System.Drawing.Size(175, 21);
this.textBox2.TabIndex = 4;
this.textBox2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// button2
//
this.button2.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.button2.Location = new System.Drawing.Point(222, 134);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(113, 30);
this.button2.TabIndex = 5;
this.button2.Text = "取消";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// label3
//
this.label3.Anchor = System.Windows.Forms.AnchorStyles.None;
this.label3.Font = new System.Drawing.Font("Verdana", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)), true);
this.label3.ForeColor = System.Drawing.Color.OliveDrab;
this.label3.Location = new System.Drawing.Point(50, 7);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(279, 33);
this.label3.TabIndex = 6;
this.label3.Text = "MyNote登陆";
this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// 控制台ToolStripMenuItem1
//
this.控制台ToolStripMenuItem1.Name = "控制台ToolStripMenuItem1";
this.控制台ToolStripMenuItem1.Size = new System.Drawing.Size(152, 22);
this.控制台ToolStripMenuItem1.Text = "控制台";
//
// LoginForm
//
this.AcceptButton = this.button1;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.button2;
this.ClientSize = new System.Drawing.Size(398, 191);
this.Controls.Add(this.label3);
this.Controls.Add(this.button2);
this.Controls.Add(this.textBox2);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.textBox1);
this.Controls.Add(this.button1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "LoginForm";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "登陆";
this.TopMost = true;
this.Load += new System.EventHandler(this.Form1_Load);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
this.contextMenuStrip1.ResumeLayout(false);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button1;
private System.Windows.Forms.NotifyIcon notifyIcon1;
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
private System.Windows.Forms.ToolStripMenuItem 用户选择栏ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 任务显示ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 任务隐藏ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 控制台ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 退出MyNoteToolStripMenuItem;
private System.Windows.Forms.TextBox textBox1;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox textBox2;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.ToolStripMenuItem 控制台ToolStripMenuItem1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -