myhotelform.cs
来自「酒店管理系统项目内容 包含当前常用的全部功能」· CS 代码 · 共 33 行
CS
33 行
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace MyHotel
{
public partial class MyHotelForm : Form
{
public MyHotelForm()
{
InitializeComponent();
}
private void tsmiExit_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void tsmiRoomType_Click(object sender, EventArgs e)
{
new MyHotelRoomTypeForm().ShowDialog();
}
private void tsmiRoom_Click(object sender, EventArgs e)
{
new MyHotelRoomInfoForm().ShowDialog();
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?