对 SL 和 WPF 主题使用相同的 XAML
我想在资源字典中定义控件样式,并将它们用于 Silverlight 4 和 WPF 4 应用程序的主题,并尽可能少地进行调整。
这就是为什么我需要了解 SL 和 WPF 主题之间的所有差异,以便大多数 XAML 可以在这两个平台上运行,几乎不需要任何更改。
我想到的唯一区别是在 Silverlight 中使用 TargetType="Type" 和在 WPF 中使用 TargetType="{x:Type Type}"。像 VisualStateManager 这样的东西怎么样?相同的 vsm 代码可以在两个平台上运行吗?根据平台的不同,我还需要更改哪些其他 XAML 部分?
谢谢, 安德烈
I want to define control styles in a resource dictionary and use those for theming of Silverlight 4 and WPF 4 applications with as little adaption as possible.
Thats why I need to know all differences between SL and WPF theming, so that most of the XAML will work on both platforms with little to no changes.
The only difference that comes to my mind is using TargetType="Type" in Silverlight and TargetType="{x:Type Type}" in WPF. How about stuff like the VisualStateManager? Does the same vsm code work on both platforms? What other XAML parts may I have to change depending on platform?
Thanks,
Andre
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文档中的 WPF 兼容性主题应该涵盖你的一些问题。然而,差异相当广泛,超出了简单的答案。
一般来说,Silverlight 是 WPF 的子集,但其功能的实现方式有所不同。
也许您最好的前进方法是首先在 Silverlight 上进行定位和测试,然后在 WPF 上进行测试。
The WPF Compatibility topic in the documentation should cover some of your question. However the differences are quite extensive and are beyond a simple answer.
Speaking very generally the Silverlight is a sub-set of WPF, however there at features which are implemented differently.
Probably your best way forward would be to target and test on Silverlight first then test on WPF.