无论如何,有办法阻止 Silverlight 中的自动 DataContext 继承吗?
无论如何,有办法阻止 Silverlight 中的自动 DataContext 继承吗?
我在代码中的父 UserControl 上设置了 DataContext。因此,UserControl 内的所有 xaml 绑定都会尝试绑定到它们获得的新 DataConext(通过自动 DataContext 继承)。
UserControl 的子元素(实际上它们是子元素的子元素)的 DataContext 是我需要在 UserControl 的代码中设置的内容...我不希望它们都很聪明,因为它们最终绑定到错误的数据目的! :-)
Is there anyway to stop automatic DataContext inheritance in Silverlight?
I Set my DataContext on my parent UserControl in code. As a result all the xaml bindings inside the UserControl try to bind to the new DataConext they get (through the automatic DataContext Inheritance).
The DataContext's for the children elements (actually they are children of children of children) of the UserControl is something I need to set in the UserControl's code... I don't want them being all smart because they end up binding to the wrong data object! :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否可以在 XAML 中将 DataContext 设置为 {x:Null},或者在代码中将 DataContext 设置为 null,以获取您不希望继承上下文的项目?
Can you set the DataContext to {x:Null} in XAML, or null in code, for the items you don't want the inherited context for?