XAML 样式功能区栏

发布于 2024-12-05 05:16:19 字数 310 浏览 1 评论 0 原文

我是功能区新手,您能告诉我如何在 Visual Studio 中设置功能区栏的样式吗? 这里有一些问题。哪个是正确的酒吧选择器?我尝试了这个

Style TargetType="custom:Ribbon"

Style TargetType="ribbon:RibbonTab"

还尝试从 Blend 中提取 Ribbon 样式。但我不能将它包含到我的 VS 项目中,因为 custom:Ribbon 似乎是错误的。

此致

I am new to Ribbons, can you please tell me how i style the Ribbon Bar in Visual Studio?
Got some probs here. Which is the right selector for the bar? I tried this one

Style TargetType="custom:Ribbon"

and

Style TargetType="ribbon:RibbonTab"

I also tried to extract the Ribbon Style from Blend. But i cant include it to my VS project because
custom:Ribbon is seems to be wrong.

Best regards

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

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

发布评论

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

评论(1

爱冒险 2024-12-12 05:16:19

您应该像这样进行 Xml 命名空间解析:

xmlns:ribbon="clr-namespace:Microsoft.Windows.Controls.Ribbon;assembly=RibbonControlsLibrary"

使用诸如 ..

<Style TargetType="{x:Type ribbon:Ribbon}">

或 之

<Style TargetType="{x:Type ribbon:RibbonTab}">

类的样式一个好的开始是与库本身一起提供的示例: 此处

You should have Xml namespace decleration like so:

xmlns:ribbon="clr-namespace:Microsoft.Windows.Controls.Ribbon;assembly=RibbonControlsLibrary"

with styles such as..

<Style TargetType="{x:Type ribbon:Ribbon}">

or

<Style TargetType="{x:Type ribbon:RibbonTab}">

A good start is the samples available alongside the library itself: here

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