找不到适用于 C++ 的 Windows 窗体应用程序 [英] Can't find Windows Forms Application for C++

查看:26
本文介绍了找不到适用于 C++ 的 Windows 窗体应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

总的来说,我对视觉工作室和编程非常陌生.我正在使用 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.

  • 这篇关于找不到适用于 C++ 的 Windows 窗体应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

    查看全文
    登录 关闭
    扫码关注1秒登录
    发送“验证码”获取 | 15天全站免登陆