如何强制 WPF UI 元素使用主题中的资源,忽略应用程序的资源

发布于 2024-08-19 10:25:55 字数 213 浏览 2 评论 0原文

有没有办法让 WPF 元素(显式或隐式)使用主题中的资源,即使 app.xaml 提供具有相同“key”的资源?

我重新设置了所有默认控件的样式,并且所有这些样式都合并到应用的 ResourceDictionary 中。现在,我有一个 XAML 文件,其中包含一个元素,我希望使用系统默认值对其进行样式设置。是否可以?

Is there a way to make a WPF element use (explicitly or implicitly) the resources located in themes even if app.xaml provides resources with the same 'key'-s?

I have all of the default controls restyled, and all those styles are merged to the app's ResourceDictionary. Now I have one single XAML file that has a single element which I'd like to be styled using system's defaults. Is it possible?

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

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

发布评论

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

评论(1

入怼 2024-08-26 10:25:55

我找到了解决方案。

我可以为资源中的单个元素应用系统主题,如下所示:

<ResourceDictionary>
    <ResourceDictionary.MergedDictionaries>                
        <ResourceDictionary 
            Source="/PresentationFramework.Aero;V3.0.0.0;31bf3856ad364e35;component\themes/aero.normalcolor.xaml" />
    </ResourceDictionary.MergedDictionaries>
</ResourceDictionary>

I've found a solution.

I can apply system theme for that single element in the resource, something like this:

<ResourceDictionary>
    <ResourceDictionary.MergedDictionaries>                
        <ResourceDictionary 
            Source="/PresentationFramework.Aero;V3.0.0.0;31bf3856ad364e35;component\themes/aero.normalcolor.xaml" />
    </ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文