我是C ++的新手,我正在尝试创建Windows Form Application,但工具箱不起作用,所以我做错了。
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;
But the tools does not works, looks like this
你能帮我解决这个问题吗
答案 0 :(得分:1)
您的项目可能是RUNNING
。所以STOP
项目然后您的工具栏项目将变为"启用"。
如果我猜错了。然后右键单击工具箱项Reset Toolbox
。然后他们将获得"启用"。
注意您可能会丢失所添加的任何自定义控件。