diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2020-11-09 23:28:49 +0300 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2020-11-09 23:28:49 +0300 |
| commit | 0408d33694635cdc28db23c9c6388bd916626bde (patch) | |
| tree | 843f2e61b8f5652ff3b2f19779820c223403ca7d /task01/Guschin/MyForm.cpp | |
Добавил первые 4 задания
Diffstat (limited to 'task01/Guschin/MyForm.cpp')
| -rw-r--r-- | task01/Guschin/MyForm.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/task01/Guschin/MyForm.cpp b/task01/Guschin/MyForm.cpp new file mode 100644 index 0000000..c45f0fc --- /dev/null +++ b/task01/Guschin/MyForm.cpp @@ -0,0 +1,13 @@ +#include "MyForm.h" + +using namespace System; +using namespace System::Windows::Forms; + +[STAThreadAttribute] +void Main(array<String^>^ args) +{ + Application::EnableVisualStyles(); + Application::SetCompatibleTextRenderingDefault(false); + Guschin::MyForm form; + Application::Run(% form); +} |