├── MyForm.cpp └── README.md /MyForm.cpp: -------------------------------------------------------------------------------- 1 | #include "MyForm.h" 2 | 3 | using namespace System; 4 | using namespace System::Windows::Forms; 5 | 6 | [STAThreadAttribute] 7 | int main(array^ args) { 8 | Application::EnableVisualStyles(); 9 | Application::SetCompatibleTextRenderingDefault(false); 10 | // Tr // MyProjectName ifadesinin yerine proje adi yazilmali(X projesinin MyFormu gibi..MyForm ise olusturdugumuz formun adi) 11 | // En // Replace MyProjectName with the name of your Project.(Like MyForm of XProject..MyForm is the name of the Form you created) 12 | MyProjectName::MyForm form; 13 | Application::Run(%form); 14 | return 0; 15 | } 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ### CLR Form Initialization 2 | 3 | Set `YourForm.cpp` file like this after created CLR Form. --------------------------------------------------------------------------------