ex22_03.cpp

来自「Visual C++ 2005的源代码」· C++ 代码 · 共 19 行

CPP
19
字号
// Ex22_03.cpp : main project file.

#include "stdafx.h"
#include "Form1.h"

using namespace Ex22_03;

[STAThreadAttribute]
int main(array<System::String ^> ^args)
{
	// Enabling Windows XP visual effects before any controls are created
	Application::EnableVisualStyles();
	Application::SetCompatibleTextRenderingDefault(false); 

	// Create the main window and run it
	Application::Run(gcnew Form1());
	return 0;
}

⌨️ 快捷键说明

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