Silverlight4 数据模板
我有一个 ItemsControl,其 ItemsSource 绑定到一个集合,另外我还有一个 ItemTemplateSelector 集。
它工作得很好,但是 DataTemplateSelector 只允许我访问由 ItemsSource 绑定的项目,但是我想使用 Parent DataContext 来决定应该使用什么项目模板。
这在SL4中可以实现吗?
如果可以的话怎样才能实现呢??
I have a ItemsControl with its ItemsSource bound to a collection, additionally I have a ItemTemplateSelector set.
It works well however the DataTemplateSelector only allows me to access the items bound by ItemsSource, however I want to use the Parents DataContext to make the decision on what item template should be used.
Is this achievable in SL4??
If so how can it be achieved??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
感谢您的回复@Xin,但我通过执行以下操作成功解决了我的问题。
Thanks for your response @Xin but I managed to resolve my problem by doing the following.
是的。
将布局根命名为“LayoutRoot”,然后您可以
在项目模板中执行此操作。
Yes it is.
Name your layout root 'LayoutRoot', then you can do
in your item template.