无法使用 MVVM light 将空文本框绑定到可为 null 的小数

发布于 2024-10-12 21:48:00 字数 78 浏览 0 评论 0原文

有什么解决方案可以将文本框绑定到可为空的小数吗?每当您将文本框留空时,绑定都不会更新。我知道一种解决方案是使用字符串属性,但我真的不想这样做。

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 技术交流群。

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

发布评论

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

评论(2

行雁书 2024-10-19 21:48:00

您可以使用 TargetNullValue

<TextBox Text="{Binding Value, TargetNullValue=''}"/>

You can do the trick by using TargetNullValue.

<TextBox Text="{Binding Value, TargetNullValue=''}"/>
行至春深 2024-10-19 21:48:00

如果简单的绑定不起作用,您可以随时使用 转换器

If simple bindings won't do you can always use a converter.

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