📄 auth.designer.cs
字号:
namespace sample
{
partial class Auth
{
/// <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.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.authToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.moduleAuth = new System.Windows.Forms.ToolStripMenuItem();
this.contentAuth = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.authToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(292, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// authToolStripMenuItem
//
this.authToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.moduleAuth,
this.contentAuth});
this.authToolStripMenuItem.Name = "authToolStripMenuItem";
this.authToolStripMenuItem.Size = new System.Drawing.Size(41, 20);
this.authToolStripMenuItem.Text = "auth";
//
// moduleAuth
//
this.moduleAuth.Name = "moduleAuth";
this.moduleAuth.Size = new System.Drawing.Size(152, 22);
this.moduleAuth.Text = "ModuleAuth";
this.moduleAuth.Click += new System.EventHandler(this.moduleAuth_Click);
//
// contentAuth
//
this.contentAuth.Name = "contentAuth";
this.contentAuth.Size = new System.Drawing.Size(152, 22);
this.contentAuth.Text = "ContentAuth";
this.contentAuth.Click += new System.EventHandler(this.contentAuth_Click);
//
// Auth
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(292, 266);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.Name = "Auth";
this.Text = "Form1";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem authToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem moduleAuth;
private System.Windows.Forms.ToolStripMenuItem contentAuth;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -