在VS2013中创建CLR空项目;在点击“项目”创建“Windows 窗体”;完成MyForm设计后,按F5运行跳出错误“必须定义入口点”。
解决方案:
在MyForm.cpp中,添加如下代码:
1 using namespace Project1; 2 3 [STAThreadAttribute] 4 int main(array<System::String ^> ^args) 5 { 6 Application::EnableVisualStyles(); 7 Application::SetCompatibleTextRenderingDefault(false); 8 9 Application::Run(gcnew MyForm()); 10 11 return 0; 12 }
那么问题就解决了。