如何在c#中指定WPF主题?
我发现我可以通过将主题 .xaml 文件添加到项目中并将其
作为资源添加到 App.xaml 来在 C# WPF 应用程序中使用不同的主题。请参阅http://wpf.codeplex.com/wikipage?title=WPF%20Themes 以获得更详细的描述。
我可以在 C# 运行时执行此操作吗? 是否可以为不同的wpf窗口指定不同的主题?
此致 马克
I found out that I can use a different theme in an C# WPF Application by adding the theme .xaml-file to the project and add
to App.xaml as a Resource. see http://wpf.codeplex.com/wikipage?title=WPF%20Themes for a more detailed description.
Can I do this as well at runtime in C#?
Is it possible to specify a different theme for different wpf windows?
Best regards
Marc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在应用程序之间共享主题,并让每个应用程序使用不同的主题。
我不认为你可以在同一个应用程序中混合主题,但 marc40000 发现你可以:
MSDN 页面 和这个< /a>
You can share themes between applications and have each one use a different one.
I didn't think you could mix themes within the same application, but marc40000 has found out you can:
There's even more information from this MSDN page and this one