我正在努力将以下代码从WPF移植到SL:
<
TabControl ...
ItemTemplate={StaticResource someResource}>
ContentTemplate={StaticResource someResource2} />
显然,SL中的 TabControl 不包含 ContentTemplate 绑定(bind)属性。
该问题的解决方法是什么?
任何提示将不胜感激。
最佳答案
我遇到了同样的问题,并在网络上找到以下解决方案:
http://vortexwolf.wordpress.com/2011/04/09/silverlight-tabcontrol-with-data-binding/
与Caliburn.Micro Bindings结合使用对我来说效果很好。
关于silverlight-4.0 - Silverlight TabControl ContentTemplate,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6054956/