无法使用 MVVM light 将空文本框绑定到可为 null 的小数
有什么解决方案可以将文本框绑定到可为空的小数吗?每当您将文本框留空时,绑定都不会更新。我知道一种解决方案是使用字符串属性,但我真的不想这样做。
Is there any solution to binding a textbox to a nullable decimal? Whenever you leave the textbox empty the binding is not updated. I know one solution is to use a string property instead but I really don't want to do it that way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 TargetNullValue。
You can do the trick by using TargetNullValue.
如果简单的绑定不起作用,您可以随时使用 转换器。
If simple bindings won't do you can always use a converter.