用于Windows窗体应用程序的Visual Studio 2015工具箱

时间:2016-08-02 17:55:35

标签: winforms visual-studio-2015 c++-cli

我是C ++的新手,我正在尝试创建Windows Form Application,但工具箱不起作用,所以我做错了。

  1. “CLR Empty Project”。
  2. Windows窗体(在UI下)。
  3. 在CPP文件中:
  4. DirectoryInfo info = new DirectoryInfo(dirtxt.Text);
    FileInfo[] fls = info.GetFiles()
                         .Where(file => file.LastWriteTime >= DateTime.Now)
                         .First();
    
    foreach (FileInfo fi in fls)
    {
        //Collect file information here
    }
    
    #include "MyForm.h"
    using namespace System;
    using namespace System::Windows::Forms;
    
    1. 在Solution Explorer属性条目中指向“main”
    2. 子系统到“Windows(/ SUBSYSTEM / WINDOWS)”
    3. 构建MYPROG
    4. 打开MyForm.h
    5. 打开工具箱,右键单击并按“显示全部”,再到MyForm上的药物按钮
    6. But the tools does not works, looks like this

      你能帮我解决这个问题吗

1 个答案:

答案 0 :(得分:1)

您的项目可能是RUNNING。所以STOP项目然后您的工具栏项目将变为"启用"。

如果我猜错了。然后右键单击工具箱项Reset Toolbox。然后他们将获得"启用"。

注意您可能会丢失所添加的任何自定义控件。