宾馆酒店管理系统.cpp
来自「宾馆酒店管理系统,建议在简体中文版Microsoft Windows Serve」· C++ 代码 · 共 18 行
CPP
18 行
// 宾馆酒店管理系统.cpp: 主项目文件。
#include "stdafx.h"
#include "MainForm.h"
using namespace 宾馆酒店管理系统;
[STAThreadAttribute]
int main(array<System::String ^> ^args)
{
// 在创建任何控件之前启用 Windows XP 可视化效果
System::Windows::Forms::Application::EnableVisualStyles();
System::Windows::Forms::Application::SetCompatibleTextRenderingDefault(false);
// 创建主窗口并运行它
System::Windows::Forms::Application::Run(gcnew MainForm());
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?