mycommunity.cpp

来自「小区物业管理系统」· C++ 代码 · 共 20 行

CPP
20
字号
// MyCommunity.cpp: 主项目文件。

#include "stdafx.h"
//#include "Form1.h"
#include "MainForm.h"
using namespace MyCommunity;

[STAThreadAttribute]
int main(array<System::String ^> ^args)
{
	// 在创建任何控件之前启用Windows XP 可视化效果
	System::Windows::Forms::Application::EnableVisualStyles();
	System::Windows::Forms::Application::SetCompatibleTextRenderingDefault(false); 
	// 创建主窗口并运行它,默认启动窗体
	//Application::Run(gcnew Form1());
	// 创建主窗口并运行它,自定义启动窗体
	System::Windows::Forms::Application::Run(gcnew MainForm());
	return 0;
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?