如何在WPF的Xaml中检测当前主题?

发布于 2024-07-30 02:52:54 字数 348 浏览 3 评论 0原文

我有一个自定义控件,在带有 Aero 主题的 XP 或 Vista 上运行时需要进行微调,是否有一种简单的方法来检测主题(操作系统检测不够,因为用户可以更改主题)并在风格触发器?

我需要在 Vista 上应用一个小的边距更改以获得所需的外观:

        <Setter Property="Margin"
                Value="0,-1,0,-1" />

上面的设置器当前是无条件的(例如不在触发器中),但需要我有两个版本。

理想情况下,解决方案应该只是 Xaml,但如果有必要,我可以公开一个属性来关联到 DataTrigger。

I have a custom control that needs a minor adjustment when running on XP or Vista with the Aero theme, is there a simple way to detect the theme (operating system detection isn't enough because the user can change the theme) and use this in a style trigger?

I need to apply a small margin change on Vista to get the look required:

        <Setter Property="Margin"
                Value="0,-1,0,-1" />

The above setter is currently unconditional (e.g. not in a Trigger) but requires me having two versions.

Ideally the solution should be Xaml only, but if necessary I could expose a property to associate to a DataTrigger.

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

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

发布评论

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

评论(1

无人接听 2024-08-06 02:52:54

您可以编写一个 ValueConverter 来获取边距设置并在其 Convert 方法中进行平台/主题检查。

You could write a ValueConverter that takes the margin settings and does a platform/theme check in its Convert method.

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