# 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());
}
网友评论