找不到适用于 C++ 的 Windows 窗体应用程序

2021-12-30 00:00:00 visual-studio c++ visual-studio-2015

总的来说,我对视觉工作室和编程非常陌生.我正在使用 Visual Studio Community 2015 桌面版(据我所知).我在 C++ 类别中找不到 Windows 窗体应用程序,而在 C# 类别中有一个.

I'm really new to visual studio and programming in general. I'm using Visual Studio Community 2015 Desktop Version (from what I know). I can't find a Windows Forms Application from the C++ category, while there is one for C#.

任何人都可以帮忙,我需要下载另一个版本、插件或其他任何东西吗?对不起,如果一个愚蠢的问题,我真的想不通!

Can anyone help, do I need to download another version, a plugin, or anything? Sorry if a stupid question, I just really can't figure it out!

推荐答案

Visual Studio 2015 中没有 C++ Windows 窗体模板.在我看来,您有两个选择:

There are no C++ Windows Form templates in Visual Studio 2015. As I see it, you have two choices:

  • 创建新项目时,您将看到一个在线下拉菜单,单击该下拉菜单并尝试搜索C++ Windows 窗体".
  • 创建一个空的 C++ CLR 项目并向其中添加一个 Windows 窗体.这个 link 是这样写的(归功于发布此内容的用户 onContentStop):

  • When creating a new project, You will see an online dropdown, click that and try to search for "C++ Windows Forms".
  • Create an empty C++ CLR project and add a Windows Forms to it. This link puts it like this (credit to the onContentStop, the user who posted this):

  1. 制作CLR 空项目".
  2. 按 Ctrl-Shift-A 并创建一个 Windows 窗体(在 UI 下).
  3. 在创建的 CPP 文件中,粘贴此代码,将方括号中除 [STAThread] 之外的任何内容替换为适当的名称:

  1. Make a "CLR Empty Project".
  2. Press Ctrl-Shift-A and create a Windows Form (under UI).
  3. Inside the CPP file that is created, paste this code, replacing anything in square brackets except [STAThread] with the appropriate names:

#include "[FORM NAME].h"

using namespace System;
using namespace System::Windows::Forms;

[STAThread]//leave this as is
void main(array<String^>^ args) {
    Application::EnableVisualStyles();
    Application::SetCompatibleTextRenderingDefault(false);
    Application::Run(gcnew [PROJECT NAME]::[FORM NAME]);
}

  • 在解决方案资源管理器中右键单击您的项目,然后单击属性.

  • Right click your project in the Solution Explorer and click Properties.

  • 相关文章