Skip to content

Instantly share code, notes, and snippets.

@201580ag
Last active August 11, 2024 04:45
Show Gist options
  • Save 201580ag/0b2509066bbc33fbcc4b543a360a0684 to your computer and use it in GitHub Desktop.
Save 201580ag/0b2509066bbc33fbcc4b543a360a0684 to your computer and use it in GitHub Desktop.
CLR WinForm cpp
using namespace System;
using namespace System::Windows::Forms;
void main(array<String^>^ args)
{
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
Project_name::MainForm form; // Project_name = Your Project Name, MainForm form = Your Form Name
Application::Run(% form);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment