在 WPF 中设置主题
我有一个相对简单的问题,我似乎无法弄清楚。我已经从 Internet 下载了一些 XAML 格式的主题文件,我想将它们用作我的 WPF 应用程序中的主题。你如何做到这一点?感谢所有帮助!
I have a relativly simple question that I can't seem to figure out. I have downloaded some theme files in an XAML format off the internet and I would like to use them as my themes in my WPF application. How do you do this? All help is appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 theme.xaml 文件添加到您的项目中(右键单击 -> 添加现有项目...)。然后在 App.xaml 文件中添加以下代码,
将 ThemeFile.xaml 替换为您要使用的主题文件的名称。
Add the theme.xaml file to your project(right click->Add Existing Item...). Then in your App.xaml file add the following code
Replacing ThemeFile.xaml with the name of the theme file you wish to use.
您可以将元素放入 App.xaml 中,它们会自动向下流动。这可以直接完成(复制和粘贴),也可以通过合并资源字典来完成,其中 app.xaml 仅引用主题的 .xaml 文件。
You can put the elements in App.xaml, and they'll automatically trickle down. This can either be done directly (copy and paste), or via a merged resource dictionary, where app.xaml just references the .xaml file(s) of your theme.