📄 mainform.designer.cs
字号:
namespace myBusinessRole
{
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()
{
this.menuStrip1 = new System.Windows.Forms.MenuStrip();
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.删除用户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.营业厅管理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.删除营业厅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.查看操作日志ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.管理操作日志ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.退出ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.管理用户ToolStripMenuItem,
this.交费管理ToolStripMenuItem,
this.营业厅管理ToolStripMenuItem,
this.系统ToolStripMenuItem});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(634, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// 管理用户ToolStripMenuItem
//
this.管理用户ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.添加新用户ToolStripMenuItem,
this.查询用户ToolStripMenuItem,
this.修改用户ToolStripMenuItem,
this.删除用户ToolStripMenuItem});
this.管理用户ToolStripMenuItem.Name = "管理用户ToolStripMenuItem";
this.管理用户ToolStripMenuItem.Size = new System.Drawing.Size(67, 20);
this.管理用户ToolStripMenuItem.Text = "用户管理";
//
// 添加新用户ToolStripMenuItem
//
this.添加新用户ToolStripMenuItem.Name = "添加新用户ToolStripMenuItem";
this.添加新用户ToolStripMenuItem.Size = new System.Drawing.Size(134, 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(134, 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(134, 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(134, 22);
this.删除用户ToolStripMenuItem.Text = "删除用户";
this.删除用户ToolStripMenuItem.Click += new System.EventHandler(this.删除用户ToolStripMenuItem_Click);
//
// 交费管理ToolStripMenuItem
//
this.交费管理ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.用户交费ToolStripMenuItem,
this.查看ToolStripMenuItem});
this.交费管理ToolStripMenuItem.Name = "交费管理ToolStripMenuItem";
this.交费管理ToolStripMenuItem.Size = new System.Drawing.Size(67, 20);
this.交费管理ToolStripMenuItem.Text = "交费管理";
//
// 用户交费ToolStripMenuItem
//
this.用户交费ToolStripMenuItem.Name = "用户交费ToolStripMenuItem";
this.用户交费ToolStripMenuItem.Size = new System.Drawing.Size(170, 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(170, 22);
this.查看ToolStripMenuItem.Text = "查看用户交费信息";
this.查看ToolStripMenuItem.Click += new System.EventHandler(this.查看ToolStripMenuItem_Click);
//
// 营业厅管理ToolStripMenuItem
//
this.营业厅管理ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.查看信息ToolStripMenuItem,
this.修改信息ToolStripMenuItem,
this.添加营业厅ToolStripMenuItem,
this.删除营业厅ToolStripMenuItem});
this.营业厅管理ToolStripMenuItem.Name = "营业厅管理ToolStripMenuItem";
this.营业厅管理ToolStripMenuItem.Size = new System.Drawing.Size(79, 20);
this.营业厅管理ToolStripMenuItem.Text = "营业厅管理";
//
// 查看信息ToolStripMenuItem
//
this.查看信息ToolStripMenuItem.Name = "查看信息ToolStripMenuItem";
this.查看信息ToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
this.查看信息ToolStripMenuItem.Text = "查看信息";
//
// 修改信息ToolStripMenuItem
//
this.修改信息ToolStripMenuItem.Name = "修改信息ToolStripMenuItem";
this.修改信息ToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
this.修改信息ToolStripMenuItem.Text = "修改信息";
//
// 添加营业厅ToolStripMenuItem
//
this.添加营业厅ToolStripMenuItem.Name = "添加营业厅ToolStripMenuItem";
this.添加营业厅ToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
this.添加营业厅ToolStripMenuItem.Text = "添加营业厅";
//
// 删除营业厅ToolStripMenuItem
//
this.删除营业厅ToolStripMenuItem.Name = "删除营业厅ToolStripMenuItem";
this.删除营业厅ToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
this.删除营业厅ToolStripMenuItem.Text = "删除营业厅";
//
// 系统ToolStripMenuItem
//
this.系统ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.描述ToolStripMenuItem,
this.关于ToolStripMenuItem,
this.查看操作日志ToolStripMenuItem,
this.管理操作日志ToolStripMenuItem,
this.退出ToolStripMenuItem});
this.系统ToolStripMenuItem.Name = "系统ToolStripMenuItem";
this.系统ToolStripMenuItem.Size = new System.Drawing.Size(43, 20);
this.系统ToolStripMenuItem.Text = "系统";
//
// 描述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 = "管理操作日志";
this.管理操作日志ToolStripMenuItem.Click += new System.EventHandler(this.管理操作日志ToolStripMenuItem_Click);
//
// 退出ToolStripMenuItem
//
this.退出ToolStripMenuItem.Name = "退出ToolStripMenuItem";
this.退出ToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
this.退出ToolStripMenuItem.Text = "退出";
this.退出ToolStripMenuItem.Click += new System.EventHandler(this.退出ToolStripMenuItem_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.ClientSize = new System.Drawing.Size(634, 432);
this.Controls.Add(this.menuStrip1);
this.IsMdiContainer = true;
this.MainMenuStrip = this.menuStrip1;
this.Name = "MainForm";
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 管理用户ToolStripMenuItem;
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 交费管理ToolStripMenuItem;
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 添加营业厅ToolStripMenuItem;
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 查看操作日志ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 管理操作日志ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 退出ToolStripMenuItem;
private System.Windows.Forms.ToolStripMenuItem 查看ToolStripMenuItem;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -