在设计工具箱中找不到 ToolStripDropDownButton
Cannot find the ToolStripDropDownButton in design toolbox
我正在制作一个表格并想使用 ToolStripDropDownButton
(基本上是一个带有向下箭头的按钮,从那里您可以 select 一个项目):
as found in the Microsoft website 但我似乎无法在表单[设计] 工具箱中找到它。
我使用的是VS2015 C#社区版,net framework 4.6。我尝试添加命名空间 using System.Windows.Forms.ToolStripDropDownButton;
但它无法识别 toolstripdropdownbutton。对此有任何帮助,我们将不胜感激。谢谢
您的代码中的问题是因为 System.Windows.Forms.ToolStripDropDownButton
是 class,不是命名空间。
Any idea how I can use that class to create the
toolstripdropdownbutton control?
使用代码:
var item = new ToolStripDropDownButton("SomeText");
item.DropDownItems.Add(new ToolStripMenuItem("SubMenu1"));
item.DropDownItems.Add(new ToolStripMenuItem("SubMenu1"));
this.toolStrip1.Items.Add(item);
您还可以查看下面的构造函数以添加图像和事件处理程序,并在文档页面底部查看更多示例:
结果:
使用设计器:
你可以在表格上放一个ToolStrip
,然后点击添加项目的下拉菜单。然后 select DropDownButton
.
更多信息:
我正在制作一个表格并想使用 ToolStripDropDownButton
(基本上是一个带有向下箭头的按钮,从那里您可以 select 一个项目):
as found in the Microsoft website 但我似乎无法在表单[设计] 工具箱中找到它。
我使用的是VS2015 C#社区版,net framework 4.6。我尝试添加命名空间 using System.Windows.Forms.ToolStripDropDownButton;
但它无法识别 toolstripdropdownbutton。对此有任何帮助,我们将不胜感激。谢谢
您的代码中的问题是因为 System.Windows.Forms.ToolStripDropDownButton
是 class,不是命名空间。
Any idea how I can use that class to create the toolstripdropdownbutton control?
使用代码:
var item = new ToolStripDropDownButton("SomeText");
item.DropDownItems.Add(new ToolStripMenuItem("SubMenu1"));
item.DropDownItems.Add(new ToolStripMenuItem("SubMenu1"));
this.toolStrip1.Items.Add(item);
您还可以查看下面的构造函数以添加图像和事件处理程序,并在文档页面底部查看更多示例:
结果:
使用设计器:
你可以在表格上放一个ToolStrip
,然后点击添加项目的下拉菜单。然后 select DropDownButton
.
更多信息: