Skip to content

Instantly share code, notes, and snippets.

@proffix4
Created October 21, 2023 13:06
Show Gist options
  • Save proffix4/dcfd8b4d1b8b28ba4b50349c36109e07 to your computer and use it in GitHub Desktop.
Save proffix4/dcfd8b4d1b8b28ba4b50349c36109e07 to your computer and use it in GitHub Desktop.
C++ CLR Project for MS Visual Studio 2022
#include "MyForm.h"
#include <Windows.h>
using namespace Project1; // Название проекта
int WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int) {
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
Application::Run(gcnew MyForm);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment