Advertisement
kirya_shkolnik

main.cpp CLR WinForms

Feb 5th, 2021
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.35 KB | None | 0 0
  1. using namespace System;
  2.  
  3. //int main(array<System::String ^> ^args)
  4. //{
  5. //    return 0;
  6. //}
  7.  
  8. #include "MyForm.h"
  9.  
  10. using namespace System::Windows::Forms;
  11.  
  12. [STAThread]
  13. int main() {
  14.     Application::EnableVisualStyles();
  15.     Application::SetCompatibleTextRenderingDefault(false);
  16.     Application::Run(gcnew ПроектЛР11::MyForm());
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement