Last active
August 11, 2024 04:45
-
-
Save 201580ag/0b2509066bbc33fbcc4b543a360a0684 to your computer and use it in GitHub Desktop.
CLR WinForm cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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