相关代码 |
|
// Example.cpp: 主项目文件。 #include "stdafx.h" #include "Form1.h" using namespace Example; [STAThreadAttribute] int main(array ^args) { // 在创建任何控件之前启用 Windows XP 可视化效果 Application::EnableVisualStyles(); Application::SetCompatibleTextRenderingDefault(false); // 创建主窗口并运行它 Application::Run(gcnew Form1()); return 0; }
相关资源 |
|