我正在使用 MaskedTextBox。我希望我的文本框最多只能包含 7 个数字。它不应该包含任何特殊字符,如 ,.@#,等等....我尝试使用“ddddddd”作为掩码,但它允许小数。所以t 仅适用于十进制。也尝试使用 000000
任何人都可以建议正确的面具。
:MaskedTextBox x:Name="TxtTutionFees"
Grid.Row="1"
Width="78"
Height="23"
Margin="142,40,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
AllowSign="False"
DecimalPrecision="2"
GroupNumerals="True"
InputMask="ddddddd"
IsEnabled="False"
PromptChar=" "
TextAlignment="Right"
GotFocus ="TextBox_GotFocus"/>