blob: c45f0fc4d1b044b895818dc61918bb54df76bcae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "MyForm.h"
using namespace System;
using namespace System::Windows::Forms;
[STAThreadAttribute]
void Main(array<String^>^ args)
{
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
Guschin::MyForm form;
Application::Run(% form);
}
|