将UltraCombo添加到已格式化的ToolStrip中

时间:2016-05-12 20:00:37

标签: c# .net infragistics toolstrip ultracombo

我正在尝试将此图像中的组合框更改为超组合控件(这是添加了控件的工具条的图片):

enter image description here

在我的视图的构造函数中,我添加了以下内容:

UltraCombo cboArea2 = new UltraCombo();
ToolStripControlHost tsHost = new ToolStripControlHost(cboArea2);

tsMain.Items.Clear();

tsMain.Items.Add(toolStripLabel2);
tsMain.Items.Add(toolStripLabel1);
tsMain.Items.Add(tsHost);
tsMain.Items.Add(toolStripSeparator1);
tsMain.Items.Add(btnGetArea);
tsMain.Items.Add(btnCreateArea);

但是,这会导致以下情况发生:

enter image description here

我不确定为什么组合框和按钮被添加到下拉列表而不是工具条中。

有人可以提供反馈,说明如何按照我需要的方式格式化吗?

1 个答案:

答案 0 :(得分:0)

经过更多的研究,我意识到这是一个已知的问题,没有已知的(我能找到)修复: http://www.infragistics.com/community/forums/t/79785.aspx

我不得不做一些" hacky"我需要在ToolStrip上创建一个带有禁用的ComboBox的开放空间,然后使用箭头键(实际上可以将UltraCombos拖放到工具条上),将UltraCombo放在上面ComboBox的顶部。现在看起来我想要它,虽然我不会称之为实际修复。