WPF:使用图像进行蒙皮
有很多示例展示了如何使用从 .xaml 文件动态加载的 DynamicResources 和 ResourceDictionaries 来设计 WPF 应用程序的外观。
我的问题是我的皮肤使用图像,我想将样式定义和图像包含在一个文件中,以便用户只需要下载它。
有什么想法如何实现这一点? 有没有办法打包多个资源?
There are a lot of samples around showing how to skin WPF applications using DynamicResources and ResourceDictionaries loaded dynamically from .xaml files.
My problem is that my skins use images and I would like to include the style definitions and the images in a single file, so that a user only needs to download this.
Any ideas how to accomplish this? Is there a way to pack multiple resources?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过创建主题的 DLL 来做到这一点,我的意思是单独的 DLL 项目,其中嵌入了图像和样式资源文件。 唯一的限制是它不允许开发人员修改样式。希望这对您有帮助
You can do this by creating DLL of a theme, I mean separate DLL project with image and style resource file embedded in that. The only limitation is that it doesn't allow developer to modify the Style.. Hope this helped you