1

I have a credit card number text box which i want it to automatically insert spaces every 4 digits as the user types in the credit card number. how can i achieve that(in an elegant way if there is)? i am thinking if regular expressions can achieve it?

4

2 回答 2

5

您可以尝试使用 MaskedTextBoxfrom

http://wpftoolkit.codeplex.com/wikipage?title=MaskedTextBox

指定输入的格式

于 2013-08-13T16:22:27.063 回答
2

尝试使用 WPF 工具包中的 MaskedTextBox。

<wpfx:MaskedTextBox Mask="0000 0000 0000 0000" />

教程链接

于 2013-08-13T16:23:31.483 回答