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 /task02/Guschin/MyForm.cpp | |
Добавил первые 4 задания
Diffstat (limited to 'task02/Guschin/MyForm.cpp')
| -rw-r--r-- | task02/Guschin/MyForm.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/task02/Guschin/MyForm.cpp b/task02/Guschin/MyForm.cpp new file mode 100644 index 0000000..3ddb603 --- /dev/null +++ b/task02/Guschin/MyForm.cpp @@ -0,0 +1,12 @@ +#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); +}
\ No newline at end of file |