如何强制 WPF UI 元素使用主题中的资源,忽略应用程序的资源
有没有办法让 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了解决方案。
我可以为资源中的单个元素应用系统主题,如下所示:
I've found a solution.
I can apply system theme for that single element in the resource, something like this: