资源简介
VS2015 C++&CLR 编写 Windows 窗体应用程序
代码片段和文件信息
#include “MyForm.h“
using namespace Example; //使用窗体命名空间
[STAThreadAttribute] //单线程特性,有些组件要求单线程
////////////////////////////////////////////////////////////
//Main函数主体
int main(array ^args)
{
// 在创建任何控件之前启用 Windows XP 可视化效果
Application::EnableVisualstyles(); //启用可视化界面,不然会很难看
//将某些控件上定义的Use CompatibleTextrendering属性设置为应用程序范围内的默认值
Application::SetCompatibleTextRenderingDefault(false);
// 创建主窗口并运行它
Application::Run(gcnew MyForm()); //创建一个窗体并进入消息循环
return 0;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 6962 2016-10-31 17:35 Example\Example\Example.vcxproj
文件 1205 2016-10-31 17:35 Example\Example\Example.vcxproj.filters
文件 614 2016-10-31 17:33 Example\Example\MyForm.cpp
文件 1514 2016-10-31 17:12 Example\Example\MyForm.h
文件 5817 2016-10-31 17:12 Example\Example\MyForm.resx
文件 1303 2016-10-31 16:34 Example\Example.sln
文件 62976 2016-10-31 17:38 Example\x64\Debug\Example.exe
目录 0 2016-10-31 17:38 Example\x64\Debug
目录 0 2016-10-31 17:38 Example\Example
目录 0 2016-10-31 17:38 Example\x64
目录 0 2016-10-31 17:38 Example
----------- --------- ---------- ----- ----
80391 11
- 上一篇:zuc算法代码
- 下一篇:影碟出租系统C++源代码
评论
共有 条评论