📄 mainform.designer.cs
字号:
namespace HotelManage
{
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.tsmiBaseSetting = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiSetRoomType = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiSetRoom = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiManageBusiness = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiManageGuest = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiExit = new System.Windows.Forms.ToolStripMenuItem();
this.menuStrip1.SuspendLayout();
this.SuspendLayout();
//
// menuStrip1
//
this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmiBaseSetting,
this.tsmiManageBusiness,
this.tsmiExit});
this.menuStrip1.Location = new System.Drawing.Point(0, 0);
this.menuStrip1.Name = "menuStrip1";
this.menuStrip1.Size = new System.Drawing.Size(792, 24);
this.menuStrip1.TabIndex = 0;
this.menuStrip1.Text = "menuStrip1";
//
// tsmiBaseSetting
//
this.tsmiBaseSetting.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmiSetRoomType,
this.tsmiSetRoom});
this.tsmiBaseSetting.Name = "tsmiBaseSetting";
this.tsmiBaseSetting.Size = new System.Drawing.Size(65, 20);
this.tsmiBaseSetting.Text = "基础设置";
//
// tsmiSetRoomType
//
this.tsmiSetRoomType.Name = "tsmiSetRoomType";
this.tsmiSetRoomType.Size = new System.Drawing.Size(142, 22);
this.tsmiSetRoomType.Text = "客房类型设置";
this.tsmiSetRoomType.Click += new System.EventHandler(this.tsmiSetRoomType_Click);
//
// tsmiSetRoom
//
this.tsmiSetRoom.Name = "tsmiSetRoom";
this.tsmiSetRoom.Size = new System.Drawing.Size(142, 22);
this.tsmiSetRoom.Text = "客房信息设置";
this.tsmiSetRoom.Click += new System.EventHandler(this.tsmiSetRoom_Click);
//
// tsmiManageBusiness
//
this.tsmiManageBusiness.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmiManageGuest});
this.tsmiManageBusiness.Name = "tsmiManageBusiness";
this.tsmiManageBusiness.Size = new System.Drawing.Size(65, 20);
this.tsmiManageBusiness.Text = "业务管理";
//
// tsmiManageGuest
//
this.tsmiManageGuest.Name = "tsmiManageGuest";
this.tsmiManageGuest.Size = new System.Drawing.Size(118, 22);
this.tsmiManageGuest.Text = "客人管理";
this.tsmiManageGuest.Click += new System.EventHandler(this.tsmiManageGuest_Click);
//
// tsmiExit
//
this.tsmiExit.Name = "tsmiExit";
this.tsmiExit.Size = new System.Drawing.Size(65, 20);
this.tsmiExit.Text = "退出系统";
this.tsmiExit.Click += new System.EventHandler(this.tsmiExit_Click);
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(792, 573);
this.Controls.Add(this.menuStrip1);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.IsMdiContainer = true;
this.MainMenuStrip = this.menuStrip1;
this.Name = "MainForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "【酒店管理系统】";
this.menuStrip1.ResumeLayout(false);
this.menuStrip1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip menuStrip1;
private System.Windows.Forms.ToolStripMenuItem tsmiBaseSetting;
private System.Windows.Forms.ToolStripMenuItem tsmiSetRoomType;
private System.Windows.Forms.ToolStripMenuItem tsmiSetRoom;
private System.Windows.Forms.ToolStripMenuItem tsmiExit;
private System.Windows.Forms.ToolStripMenuItem tsmiManageBusiness;
private System.Windows.Forms.ToolStripMenuItem tsmiManageGuest;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -