mstoyanov7

clr

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