C# WPF TextBox控制只能输入某一范围(比如0-100)的整数

基本原理是直接添加两个事件,然后加上判断: 

1. KeyDown 2.TextChanged

话不多说,直接上代码:

    前台代码:

<TextBox x:Name="TextBoxForText" HorizontalAlignment="Left" Height="101" Margin="10,167,0,0" TextWrapping="Wrap"  VerticalAlignment="Top" Width="299" KeyDown="TextBoxForText_KeyDown" MaxLength="3" TextChanged="TextBoxForText_TextChanged">

    后台代码:

private void TextBoxForText_KeyDown(object sender, KeyEventArgs e)
        {
            TextBox txt = sender as TextBox;

            // 过滤按键
            if ((e.Key >= Key.NumPad0 && e.Key <= Key.NumPad9))
            {
                e.Handled = false;
            }
            else if (((e.Key >= Key.D0 && e.Key <= Key.D9)))
            {
                e.Handled = false;
            }
            else
            {
                e.Handled = true;
            }

        }

        private void TextBoxForText_TextChanged(object sender, TextChangedEventArgs e)
        {
            try 
            {
                string strNum = TextBoxForText.Text;
                if ("" == strNum || null == strNum)
                {
                    return;
                }
                int num = int.Parse(TextBoxForText.Text);
                TextBoxForText.Text = num.ToString();
                if (num <= 100)
                {
                    return;
                }
                else
                {
                    TextBoxForText.Text = TextBoxForText.Text.Remove(2);
                    TextBoxForText.SelectionStart = TextBoxForText.Text.Length;
                }
             }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
            }
        }

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值