IT-Academy

C++ CLR CLI GUI

Jun 26th, 2018
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. using namespace System;
  2. using namespace System::Windows::Forms;
  3.  
  4. [STAThreadAttribute]
  5. int main(array<String^> ^ args) {
  6.     Application::EnableVisualStyles();
  7.     Application::SetCompatibleTextRenderingDefault(false);
  8.     GUI::MyForm form;
  9.     Application::Run(%form);
  10.  
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment