WPF中禁止文本框中输入数字

来源:互联网 发布:微信圈粉软件 编辑:程序博客网 时间:2024/05/01 23:25

 

private void textBox1_PreviewTextInput(object sender, TextCompositionEventArgs e)
        {
            e.Handled = System.Text.RegularExpressions.Regex.IsMatch(e.Text, @"[0-9]+");
            base.OnPreviewTextInput(e);
        }

原创粉丝点击