删除Rad命令栏中的“添加或删除按钮”

时间:2014-06-23 07:47:19

标签: winforms telerik

我有一个使用以下代码创建的Rad Command Bar:

RadCommandBar main = new RadCommandBar();
main.Dock = DockStyle.Top;
main.AutoSize = true;
main.Size = new System.Drawing.Size(874, 59);

CommandBarRowElement address = new CommandBarRowElement();
CommandBarStripElement strip = new CommandBarStripElement();
strip.FloatingForm = null;
strip.StretchHorizontally = true;
address.Strips.Add(strip);

CommandBarDropDownList addressEdit = new CommandBarDropDownList();
addressEdit.MaxSize = new System.Drawing.Size(0, 0);
addressEdit.VisibleInOverflowMenu = true;
addressEdit.StretchHorizontally = true;

main.Rows.Add(address);

parent.Controls.Add(main);

我遇到了隐藏strip元素的“Add or Remove Buttons”的问题。有人能指出我隐藏该菜单的正确方法吗?

2 个答案:

答案 0 :(得分:1)

您可以使用以下代码:

strip.OverflowButton.Visibility = Telerik.WinControls.ElementVisibility.Hidden;

答案 1 :(得分:1)

最好将“可见性”设置为“折叠”,以便折叠整个项目。使用隐藏将隐藏项目,但其空间将被保留。有关详细信息,请访问:Customize the overflow button