我目前正在制作一个 C++ GUI 应用程序,但我遇到了以下问题。在程序中,我有一个 MyForm.cpp 和一个 Myform.h(只有一个按钮)。当应用程序启动控制台并打开表单时。这是默认的吗?或者我该如何禁用它?主要的代码是:
#include "MyForm.h"
using namespace System;
using namespace System::Windows::Forms;
[STAThread]
int main(array<String^>^ args)
{
Application::EnableVisualStyles();
Application::SetCompatibleTextRenderingDefault(false);
Namespace::MyForm form;
Application::Run(%form);
}
希望有人能帮忙?