如何在 WinForms 上隐藏 devexpress RibbonControl 栏项目

发布于 2025-01-05 17:01:25 字数 213 浏览 1 评论 0原文

我想隐藏 DevExpress RibbonControl 栏项(我知道如何隐藏页面,但不知道如何隐藏pageGroup 和 items)基于用户的标准。然而,我觉得找到合适的财产来做到这一点。我恳请您伸出援手。

谢谢

I want to hide the DevExpress RibbonControl bar items (i know how to hide the page but not the pageGroup and items) based on user's criteria. However, i felt to find the right property to do that. I'm kindly asking for your helping hand.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

嗫嚅 2025-01-12 17:01:25

请使用 BarItem.VisibilityRibbonPageGroup.Visible 属性:

barButtonItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
//...
ribbonPageGroup1.Visible = false;

Please use the BarItem.Visibility and RibbonPageGroup.Visible properties:

barButtonItem1.Visibility = DevExpress.XtraBars.BarItemVisibility.Never;
//...
ribbonPageGroup1.Visible = false;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文