在 WPF 中设置主题

发布于 2024-08-27 08:25:38 字数 100 浏览 4 评论 0原文

我有一个相对简单的问题,我似乎无法弄清楚。我已经从 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 技术交流群。

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

发布评论

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

评论(2

要走就滚别墨迹 2024-09-03 08:25:38

将 theme.xaml 文件添加到您的项目中(右键单击 -> 添加现有项目...)。然后在 App.xaml 文件中添加以下代码,

<Application.Resources>
<ResourceDictionary Source="ThemeFile.xaml" />
</Application.Resources>

将 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

<Application.Resources>
<ResourceDictionary Source="ThemeFile.xaml" />
</Application.Resources>

Replacing ThemeFile.xaml with the name of the theme file you wish to use.

被你宠の有点坏 2024-09-03 08:25:38

您可以将元素放入 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.

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