Expression Blend 4 中的两种方式绑定

发布于 2024-10-17 21:54:41 字数 329 浏览 2 评论 0原文

Blend 4 如何决定(在 Silverlight 4 中)设计器中创建的绑定是 OneWay 还是 TwoWay? 我已将 INPC 类中的整数绑定到自定义控件上的 DependencyProperty,但它仅生成 {Binding Something} 而不是 {Bindig Something, Mode=TwoWay}嗯>.
因此,我放置了一个[Bindable(true,BindingDirection.TwoWay)],但这没有任何作用,并且 BindingDirection.TwoWay 的注释也没有任何意义,因为它说了有关“模板公开属性”的内容“……

How does Blend 4 decide (in Silverlight 4) whether a Binding created in designer is OneWay or TwoWay?
I've bound an integer from an INPC class to a DependencyProperty on my custom control, but it only generated a {Binding Something} instead of a {Bindig Something, Mode=TwoWay}.
So I've put a [Bindable(true,BindingDirection.TwoWay)], but that did nothing, and the remarks for BindingDirection.TwoWay made no sense too, since it says things about "templates exposing properties"...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

煮酒 2024-10-24 21:54:41

在 Silverlight 中(与 WPF 不同),Binding.Mode 属性定义:

BindingMode 值之一。默认为 BindingMode.OneWay。

如果您不指定此项,您将获得 OneWay 绑定。

In Silverlight (unlike WPF), the Binding.Mode property defines:

One of the BindingMode values. The default is BindingMode.OneWay.

If you don't specify this, you'll get a OneWay binding.

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