Skip to content

Instantly share code, notes, and snippets.

@ninpl
Created September 22, 2017 05:41
Show Gist options
  • Save ninpl/81809542bb0904ac66b19f64072d408f to your computer and use it in GitHub Desktop.
Save ninpl/81809542bb0904ac66b19f64072d408f to your computer and use it in GitHub Desktop.
Visual Studio 2017 C++ UI main registro
#include "MyForm.h"
using namespace System;
using namespace System ::Windows::Forms;
[STAThread]
void main(array<String^>^ arg) {
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
NameProject::MyForm form;
Application::Run(%form);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment