Expression Blend 4 中的两种方式绑定
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Silverlight 中(与 WPF 不同),Binding.Mode 属性定义:
如果您不指定此项,您将获得 OneWay 绑定。
In Silverlight (unlike WPF), the Binding.Mode property defines:
If you don't specify this, you'll get a OneWay binding.