IT-Academy

C++ GUI

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