WPF 功能区 - 隐藏快速访问工具栏
如何在 WPF 的功能区中隐藏快速访问工具栏?
how do you hide Quick Access Toolbar in a WPF's Ribbon?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 WPF 的功能区中隐藏快速访问工具栏?
how do you hide Quick Access Toolbar in a WPF's Ribbon?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
对于 Microsoft Ribbon for WPF,您可以隐藏通过使用 VisualTreeHelper 来实现。在
Loaded
事件处理程序中,只需将包含快速访问工具栏的行大小调整为 0 :For Microsoft Ribbon for WPF, you can hide it by using the
VisualTreeHelper
. On theLoaded
event handler, just resize the row containing the Quick Access Toolbar to 0 :当 Ribbon 控件位于 RibbonWindow 中时,快速访问工具栏会自动隐藏。如果不是,似乎就不可能隐藏它。我已经在这个问题上工作了几个小时,但无法正确隐藏它。
但有一个简单的解决方法:将 Ribbon 控件放置在面板内,并给它一个负的上边距,这样它就会滑到面板之外。将面板的 ClipToBounds 属性设置为 true,QAT 将被隐藏。
顺便说一句 - WPF 有多种功能区实现,甚至是 Microsoft 自己实现的(“Fluent Ribbon”和“Microsoft Ribbon for WPF”),所以下次您应该提及您正在谈论的是哪一个。
The Quick Access Toolbar is automatically hidden when the Ribbon control is in a RibbonWindow. When it is not, it seems impossible to hide it. I have already worked hours on this issue and was unable to hide it properly.
But there is one simple workaround: Place the Ribbon control inside of a Panel and give it a negative top margin so it will slide outside of the Panel. Set the Panel's ClipToBounds property to true and the QAT will be hidden.
By the way - there are multiple Ribbon implementations for WPF, even by Microsoft themselves ("Fluent Ribbon" and "Microsoft Ribbon for WPF"), so next time you should mention which one you are talking about.
或者,如果您希望将所有内容都包含在 XAML 中,则可以这样做
Or if you want it all in the XAML, this works
这是解决方案:
Here is the solution :
我知道这是一篇旧文章,但找到了一个更简单的解决方案......
将其添加到功能区中:-
I know this is an old post, but found an easier solution...
Add this inside the ribbon :-
聚会有点晚了。
这将有助于隐藏快捷栏
Bit late to the party.
This will help to hide the quick bar