wforms.cpp
来自「MySql数据库系统的用于c++的连接api,对vs系列有很好的支持」· C++ 代码 · 共 18 行
CPP
18 行
// wforms.cpp : main project file.
#include "MainForm.h"
using namespace wforms;
[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 MainForm());
return 0;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?