📄 mainform.designer.cs
字号:
namespace renshiguanli
{
partial class MainForm
{
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
this.MenuItem_information = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItem_salary = new System.Windows.Forms.ToolStripMenuItem();
this.MenuItem_department = new System.Windows.Forms.ToolStripMenuItem();
this.panel1 = new System.Windows.Forms.Panel();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.BackColor = System.Drawing.SystemColors.Control;
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.MenuItem_information,
this.MenuItem_salary,
this.MenuItem_department});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(399, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// MenuItem_information
//
this.MenuItem_information.Name = "MenuItem_information";
this.MenuItem_information.Size = new System.Drawing.Size(65, 20);
this.MenuItem_information.Text = "员工资料";
this.MenuItem_information.Click += new System.EventHandler(this.MenuItem_information_Click);
//
// MenuItem_salary
//
this.MenuItem_salary.Name = "MenuItem_salary";
this.MenuItem_salary.Size = new System.Drawing.Size(65, 20);
this.MenuItem_salary.Text = "员薪管理";
this.MenuItem_salary.Click += new System.EventHandler(this.MenuItem_salary_Click);
//
// MenuItem_department
//
this.MenuItem_department.Name = "MenuItem_department";
this.MenuItem_department.Size = new System.Drawing.Size(65, 20);
this.MenuItem_department.Text = "部门管理";
this.MenuItem_department.Click += new System.EventHandler(this.MenuItem_department_Click);
//
// panel1
//
this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 24);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(399, 242);
this.panel1.TabIndex = 1;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
this.ClientSize = new System.Drawing.Size(399, 266);
this.Controls.Add(this.panel1);
this.Controls.Add(this.menuStrip1);
this.MainMenuStrip = this.menuStrip1;
this.MaximizeBox = false;
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "mainForm";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem MenuItem_information;
private System.Windows.Forms.ToolStripMenuItem MenuItem_salary;
private System.Windows.Forms.ToolStripMenuItem MenuItem_department;
private System.Windows.Forms.Panel panel1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -