不带小数的文本框导致>的问题标志

时间:2016-07-20 17:57:34

标签: vb.net xaml textbox

我有一个文本框,其中我不想要小数,所以我通过检入keydown事件限制用户键入十进制。 但是,这会导致“>”问题签名,因为用户无法输入“>”签到文本框。

If Not e.Handled AndAlso e.Key = Key.Decimal OrElse e.PlatformKeyCode = 190 OrElse e.PlatformKeyCode = 110 Then
        If e.Key <> Key.Back Then
            e.Handled = True
        End If
End If

任何输入我如何解决?

0 个答案:

没有答案