【C#】控制文本框(TextBox)只能输入正数,负数,小数

/* 
 *设置textBox只能输入数字(正数,负数,小数) 
 *使用了TextBox的KeyPress事件
 */  
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)  
{  
    //允许输入数字、小数点、删除键和负号  
    if ((e.KeyChar < 48 || e.KeyChar > 57) && e.KeyChar != 8 && e.KeyChar != (char)('.') && e.KeyChar != (char)('-'))  
    {  
        MessageBox.Show("请输入正确的数字");  
        this.textBox1.Text = "";  
        e.Handled = true;  
    }  
    if (e.KeyChar == (char)('-'))  
    {  
        if (textBox1.Text != "")  
        {  
            MessageBox.Show("请输入正确的数字");  
            this.textBox1.Text = "";  
            e.Handled = true;  
        }  
    }  
    /*小数点只能输入一次*/  
    if (e.KeyChar == (char)('.') && ((TextBox)sender).Text.IndexOf('.') != -1)  
    {  
        MessageBox.Show("请输入正确的数字");  
        this.textBox1.Text = "";  
        e.Handled = true;  
    }  
    /*第一位不能为小数点*/  
    if (e.KeyChar == (char)('.') && ((TextBox)sender).Text == "")  
    {  
        MessageBox.Show("请输入正确的数字");  
        this.textBox1.Text = "";  
        e.Handled = true;  
    }  
    /*第一位是0,第二位必须为小数点*/  
    if (e.KeyChar != (char)('.') && ((TextBox)sender).Text == "0")  
    {  
        MessageBox.Show("请输入正确的数字");  
        this.textBox1.Text = "";  
        e.Handled = true;  
    }  
    /*第一位是负号,第二位不能为小数点*/  
    if (((TextBox)sender).Text == "-" && e.KeyChar == (char)('.'))  
    {  
        MessageBox.Show("请输入正确的数字");  
        this.textBox1.Text = "";  
        e.Handled = true;  
    }
}

猜你喜欢

转载自blog.csdn.net/u010398722/article/details/78535144