我无法创建Windows窗体应用程序

时间:2019-08-13 07:43:39

标签: winforms visual-c++

在问这个问题之前, 我读了这个话题:Can't find Windows Forms Application for C++ 我看了三个视频,但我遇到了同样的错误。

这是我的错误: https://pasteboard.co/IstclJB.png

我做了什么: https://pasteboard.co/Istdm2T.png

https://pasteboard.co/Istdwfv.png

#include "MyForm.h"
using namespace System;
using namespace System::Windows::Forms;
[STAThread]

void main(array<String^>^ args) {
    Application::EnableVisualStyles();
    Application::SetCompatibleTextRenderingDefault(false);
    Project3::MyForm form;
    Application::Run(%form);
}


0 个答案:

没有答案