两种方式绑定到不同的值
在 WPF 中有什么方法可以从属性中获取一个值以显示在文本框中,然后当更新文本框的值时,更新绑定对象上的不同属性?例如:对于两个字段 - 数量和新数量。我正在考虑 IMultiValueConverter 的思路,但如果我尝试使用 添加到对象的绑定,我会收到“双向绑定需要路径或 XPath 错误”。
问题是我正在使用 Web 服务,因此代理类是自动生成的。
Is there any way in WPF I can getb a value from a property to display in a textbox, then when the value of the textbox is updated, update a different property on a bound object? Eg: for two fields - Quantity and NewQuantity. I was thinking something along the lines of an IMultiValueConverter but if I try to add a binding to the object with , I get a "Two way binding requires a path or XPath error".
The problem is that I'm using a web service, so the proxy classes are autogenerated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定我是否会推荐它,因为它确实是一段可怕的代码,但是您可以在视图模型中执行此操作以获得您想要的行为:
I'm not sure I'd recommend it, because it really is a horrible bit of code, but you could do this in the viewmodel to get the behaviour you want:
我认为唯一的方法是在您绑定的 viewModel 上创建一个代理属性,它将为您完成“重定向工作”...
I thinks the only way to do it is to create a proxy property on the viewModel you bind to which will do the 'redirecting job' for you...