📄 myhotelform.designer.cs
字号:
namespace MyHotel
{
partial class MyHotelForm
{
/// <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(MyHotelForm));
this.msAdminSystem = new System.Windows.Forms.MenuStrip();
this.tsmiBase = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiRoomType = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiRoom = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiProfession = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiGuest = new System.Windows.Forms.ToolStripMenuItem();
this.tsmiExit = new System.Windows.Forms.ToolStripMenuItem();
this.label1 = new System.Windows.Forms.Label();
this.msAdminSystem.SuspendLayout();
this.SuspendLayout();
//
// msAdminSystem
//
this.msAdminSystem.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmiBase,
this.tsmiProfession,
this.tsmiExit});
this.msAdminSystem.Location = new System.Drawing.Point(0, 0);
this.msAdminSystem.Name = "msAdminSystem";
this.msAdminSystem.Size = new System.Drawing.Size(802, 24);
this.msAdminSystem.TabIndex = 0;
//
// tsmiBase
//
this.tsmiBase.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmiRoomType,
this.tsmiRoom});
this.tsmiBase.Name = "tsmiBase";
this.tsmiBase.Size = new System.Drawing.Size(65, 20);
this.tsmiBase.Text = "基础设置";
//
// tsmiRoomType
//
this.tsmiRoomType.Name = "tsmiRoomType";
this.tsmiRoomType.Size = new System.Drawing.Size(142, 22);
this.tsmiRoomType.Text = "客房类型设置";
this.tsmiRoomType.Click += new System.EventHandler(this.tsmiRoomType_Click);
//
// tsmiRoom
//
this.tsmiRoom.Name = "tsmiRoom";
this.tsmiRoom.Size = new System.Drawing.Size(142, 22);
this.tsmiRoom.Text = "客房信息设置";
this.tsmiRoom.Click += new System.EventHandler(this.tsmiRoom_Click);
//
// tsmiProfession
//
this.tsmiProfession.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsmiGuest});
this.tsmiProfession.Name = "tsmiProfession";
this.tsmiProfession.Size = new System.Drawing.Size(65, 20);
this.tsmiProfession.Text = "业务管理";
//
// tsmiGuest
//
this.tsmiGuest.Name = "tsmiGuest";
this.tsmiGuest.Size = new System.Drawing.Size(118, 22);
this.tsmiGuest.Text = "客人管理";
//
// 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);
//
// label1
//
this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.Cornsilk;
this.label1.Font = new System.Drawing.Font("宋体", 15F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.label1.Location = new System.Drawing.Point(148, 278);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(179, 20);
this.label1.TabIndex = 1;
this.label1.Text = "XXOO酒店管理系统";
//
// MyHotelForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
this.ClientSize = new System.Drawing.Size(802, 623);
this.Controls.Add(this.label1);
this.Controls.Add(this.msAdminSystem);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.MainMenuStrip = this.msAdminSystem;
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "MyHotelForm";
this.RightToLeft = System.Windows.Forms.RightToLeft.No;
this.Text = "酒店管理系统";
this.msAdminSystem.ResumeLayout(false);
this.msAdminSystem.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.MenuStrip msAdminSystem;
private System.Windows.Forms.ToolStripMenuItem tsmiBase;
private System.Windows.Forms.ToolStripMenuItem tsmiRoomType;
private System.Windows.Forms.ToolStripMenuItem tsmiRoom;
private System.Windows.Forms.ToolStripMenuItem tsmiProfession;
private System.Windows.Forms.ToolStripMenuItem tsmiGuest;
private System.Windows.Forms.ToolStripMenuItem tsmiExit;
private System.Windows.Forms.Label label1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -