Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试使用开发组件功能区栏上的快速访问工具栏,如果我在设计器中设置它可以正常工作。但是,如果我在表单加载事件上更改“BaseItem”上的“CanCustomize”标志,则自定义对话框不会选择它。我想知道是否可以调用一个命令来告诉功能区栏重新定义自己?或者如果我必须完全重新定义功能区栏?
我试过调用 RecalcLayout 如下
BaseItem.CanCustomize = false RibbonBar.RecalcLayout()
但它不起作用。
嗨,已经弄清楚了对此有用的方法。
BaseItem.visible = false
这将阻止它显示在 QAT 上,但它仍然会在自定义菜单上可见,我仍然想停止显示其中的一些,但还没有弄清楚。