📄 mainform.cs
字号:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Threading;
using System.Data;
namespace HotelManage
{
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class MainForm : System.Windows.Forms.Form
{
private System.Windows.Forms.Splitter splitter1;
private System.Windows.Forms.ToolBar toolBar1;
private System.Windows.Forms.ToolBarButton toolBarButton1;
private System.Windows.Forms.ToolBarButton toolBarButton2;
private System.Windows.Forms.ToolBarButton toolBarButton3;
private System.Windows.Forms.ToolBarButton toolBarButton4;
private System.Windows.Forms.ToolBarButton toolBarButton5;
private System.Windows.Forms.ToolBarButton toolBarButton6;
private System.Windows.Forms.ToolBarButton toolBarButton7;
private System.Windows.Forms.ToolBarButton toolBarButton8;
private System.Windows.Forms.ToolBarButton toolBarButton10;
private System.ComponentModel.IContainer components;
public MainForm()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码
//
}
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
/// </summary>
private void InitializeComponent()
{
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MainForm));
this.splitter1 = new System.Windows.Forms.Splitter();
this.toolBar1 = new System.Windows.Forms.ToolBar();
this.toolBarButton1 = new System.Windows.Forms.ToolBarButton();
this.toolBarButton2 = new System.Windows.Forms.ToolBarButton();
this.toolBarButton3 = new System.Windows.Forms.ToolBarButton();
this.toolBarButton4 = new System.Windows.Forms.ToolBarButton();
this.toolBarButton5 = new System.Windows.Forms.ToolBarButton();
this.toolBarButton6 = new System.Windows.Forms.ToolBarButton();
this.toolBarButton7 = new System.Windows.Forms.ToolBarButton();
this.toolBarButton8 = new System.Windows.Forms.ToolBarButton();
this.toolBarButton10 = new System.Windows.Forms.ToolBarButton();
this.SuspendLayout();
//
// splitter1
//
this.splitter1.BackColor = System.Drawing.SystemColors.Desktop;
this.splitter1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.splitter1.Dock = System.Windows.Forms.DockStyle.Top;
this.splitter1.Location = new System.Drawing.Point(0, 0);
this.splitter1.Name = "splitter1";
this.splitter1.Size = new System.Drawing.Size(644, 3);
this.splitter1.TabIndex = 1;
this.splitter1.TabStop = false;
//
// toolBar1
//
this.toolBar1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
this.toolBarButton1,
this.toolBarButton2,
this.toolBarButton3,
this.toolBarButton4,
this.toolBarButton5,
this.toolBarButton6,
this.toolBarButton7,
this.toolBarButton8,
this.toolBarButton10});
this.toolBar1.DropDownArrows = true;
this.toolBar1.Location = new System.Drawing.Point(0, 3);
this.toolBar1.Name = "toolBar1";
this.toolBar1.ShowToolTips = true;
this.toolBar1.Size = new System.Drawing.Size(644, 42);
this.toolBar1.TabIndex = 3;
this.toolBar1.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
//
// toolBarButton1
//
this.toolBarButton1.Text = "客房类型管理";
//
// toolBarButton2
//
this.toolBarButton2.Text = "客房管理";
//
// toolBarButton3
//
this.toolBarButton3.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
//
// toolBarButton4
//
this.toolBarButton4.Text = "客房查询";
//
// toolBarButton5
//
this.toolBarButton5.Text = "客户查询";
//
// toolBarButton6
//
this.toolBarButton6.Text = "客户入住";
//
// toolBarButton7
//
this.toolBarButton7.Text = "客户结算";
//
// toolBarButton8
//
this.toolBarButton8.Style = System.Windows.Forms.ToolBarButtonStyle.Separator;
//
// toolBarButton10
//
this.toolBarButton10.Text = "退出系统";
//
// MainForm
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.BackColor = System.Drawing.SystemColors.Window;
this.ClientSize = new System.Drawing.Size(644, 525);
this.Controls.Add(this.toolBar1);
this.Controls.Add(this.splitter1);
this.ForeColor = System.Drawing.SystemColors.Desktop;
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.IsMdiContainer = true;
this.MaximizeBox = false;
this.MaximumSize = new System.Drawing.Size(650, 578);
this.Name = "MainForm";
this.Text = "欢迎使用宾馆管理系统";
this.Load += new System.EventHandler(this.MainForm_Load);
this.ResumeLayout(false);
}
#endregion
static void Main()
{
Thread thread = Thread.CurrentThread;
thread.ApartmentState = ApartmentState.STA;
Application.Run(new MainForm());
}
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
private void toolBar1_ButtonClick(object sender, System.Windows.Forms.ToolBarButtonClickEventArgs e)
{
switch(toolBar1.Buttons.IndexOf(e.Button))
{//根据单击ToolBar上的Button的索引不同而触发不同的事件
case 0:
Form RoomTypeForm=new RoomType();
//创建RoomType的实例
for(int x=0;x<this.MdiChildren.Length;x++)
{
Form tempChild = (Form)this.MdiChildren[x];
tempChild.Close();
}
//关闭主窗体的其他子窗体
RoomTypeForm.MdiParent = this;
//设置主窗体为父窗体
RoomTypeForm.WindowState = FormWindowState.Maximized;
//最大化子窗体
RoomTypeForm.Show();
break; //跳出Switch
case 1:
Form RoomForm=new Room();
for(int x=0;x<this.MdiChildren.Length;x++)
{
Form tempChild = (Form)this.MdiChildren[x];
tempChild.Close();
}
RoomForm.MdiParent = this;//setup MdiParent for expertMaintenance form
RoomForm.WindowState = FormWindowState.Maximized;
RoomForm.Show();
break;
case 3:
case 5:
Form RoomSearchForm=new RoomSearch();
for(int x=0;x<this.MdiChildren.Length;x++)
{
Form tempChild = (Form)this.MdiChildren[x];
tempChild.Close();
}
RoomSearchForm.MdiParent = this;//setup MdiParent for expertMaintenance form
RoomSearchForm.WindowState = FormWindowState.Maximized;
RoomSearchForm.Show();
break;
case 4:
case 6:
Form ClientSearchForm=new ClientSearch();
for(int x=0;x<this.MdiChildren.Length;x++)
{
Form tempChild = (Form)this.MdiChildren[x];
tempChild.Close();
}
ClientSearchForm.MdiParent = this;//setup MdiParent for expertMaintenance form
ClientSearchForm.WindowState = FormWindowState.Maximized;
ClientSearchForm.Show();
break;
case 8:
Application.Exit();
break;
}
}
private void MainForm_Load(object sender, System.EventArgs e)
{
Form RoomBookIn=new InitialForm();
RoomBookIn.MdiParent = this;//setup MdiParent for expertMaintenance form
RoomBookIn.WindowState = FormWindowState.Maximized;
RoomBookIn.Show();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -