软件相关

[C++] CLR Form

2018-09-26  本文已影响0人  天涯热土
# include "MyForm.h"
using namespace System;
using namespace System::Windows::Forms;

[STAThread]
void main(array<String^>^ args)
{
     Application::EnableVisualStyles();
    Application::SetCompatibleTextRenderingDefault (false);
     Project6::MyForm form;
     Application::Run(%form);
    //Application::Run(gcnew MyForm());
}
上一篇 下一篇

猜你喜欢

热点阅读