无论如何,有办法阻止 Silverlight 中的自动 DataContext 继承吗?

发布于 2024-08-27 05:06:52 字数 287 浏览 7 评论 0原文

无论如何,有办法阻止 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

久随 2024-09-03 05:06:52

您是否可以在 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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文