Silverlight TabControl 内容模板
我正在努力将以下代码从 WPF 移植到 SL
:
TabControl ...
ItemTemplate={StaticResource someResource}>
ContentTemplate={StaticResource someResource2} />
显然 SL 中的 TabControl 不包含 ContentTemplate 绑定属性。
此问题的解决方法是什么? 任何提示将不胜感激。
I'm struggling to port the following piece of code from WPF to SL:
<
TabControl ...
ItemTemplate={StaticResource someResource}>
ContentTemplate={StaticResource someResource2} />
Apparently the TabControl in SL doesn't contain ContentTemplate binding property.
What's the workaround for this issue?
Any hint would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了同样的问题,并在网上找到了以下解决方案:
http://vortexwolf.wordpress.com/2011/04/09/silverlight-tabcontrol-with-data-binding/
与 Caliburn.Micro Bindings 结合使用效果很好。
I had the same problem and found following solution on the web:
http://vortexwolf.wordpress.com/2011/04/09/silverlight-tabcontrol-with-data-binding/
Works fine for me in conjunction with Caliburn.Micro Bindings.