如何让 MaskedTextBox 在数字左边填充零?

发布于 2025-01-06 01:42:34 字数 148 浏览 1 评论 0原文

在 MVVM 应用程序中使用 WPF 工具包 MaskedTextBox。我将其 value 属性绑定到 Int32 值类型的属性。

掩码是“00000000”。但它显示的只是我的原始数字 149,而不是 00000149

难道不应该用 0 填充吗?

Using the WPF Toolkit MaskedTextBox in an MVVM app. I have it's value property bound to a property that is an Int32 valuetype.

The Mask is "00000000". But all it shows is my raw number, 149, instead of, 00000149

Shouldn't it be left padding with 0s ?

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

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

发布评论

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

评论(1

他不在意 2025-01-13 01:42:34

在你的情况下,“掩码”只是意味着“接受八位数字”,它没有做任何其他事情。您可以在此处阅读更多信息:http://wpftoolkit.codeplex.com/wikipage?title=MaskedTextBox

(支持的掩码字符串部分)

对于解决方案,您应该:

  • 在绑定中使用 StringFormat,尝试以下操作: StringFormat={}{0:00000000}
  • 编写ValueConverter 来支持您实际需要的内容(尽管这不是它的目的)。

有关 StringFormat 的详细信息

"Mask" in your case just means "accept eight digits", it doesn't do anything else. You can read more here: http://wpftoolkit.codeplex.com/wikipage?title=MaskedTextBox

(Supported Mask Strings section)

For the solution, you should either:

  • Use StringFormat in your binding, try this: StringFormat={}{0:00000000}
  • Writing a ValueConverter to support what you actually need (although this is not it's purpose).

More on StringFormat

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