4

我的目标:我希望文本框接受十进制数字,如 123.45 或 0.45 或 1004.72。如果用户输入 a 或 b 或 c 之类的字母,程序应显示一条消息,提醒用户只输入数字。

我的问题:我的代码只检查像 1003 或 567 或 1 这样的数字。它不检查像 123.45 或 0.45 这样的十进制数。如何让我的文本框检查十进制数字?以下是我的代码:

namespace Error_Testing
{

    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void textBox1_TextChanged(object sender, EventArgs e)
        {
            string tString = textBox1.Text;
            if (tString.Trim() == "") return;
            for (int i = 0; i < tString.Length; i++)
            {
                if (!char.IsNumber(tString[i]))
                {
                    MessageBox.Show("Please enter a valid number");
                    return;
                }
            }
            //If it get's here it's a valid number
        }
    } 
}

我是新手,提前感谢您的帮助。:)

4

3 回答 3

21

用于Decimal.TryParse检查输入的字符串是否为十进制。

decimal d;
if(decimal.TryParse(textBox1.Text, out d))
{
    //valid 
}
else
{
    //invalid
    MessageBox.Show("Please enter a valid number");
    return;
}
于 2013-08-26T17:15:08.273 回答
0

对于包含“,”字符的字符串,decimal.Tryparse 返回 true,例如像“0,12”这样的字符串返回 true。

于 2015-06-28T05:40:34.850 回答
0
private void txtrate_TextChanged_1(object sender, EventArgs e)
        {
            double parsedValue;
            decimal d;
            // That Check the Value Double or Not
            if (!double.TryParse(txtrate.Text, out parsedValue))
            {
                //Then Check The Value Decimal or double Becouse The Retailler Software Tack A decimal or double value
                if (decimal.TryParse(txtrate.Text, out d) || double.TryParse(txtrate.Text, out parsedValue))
                {
                    purchase();
                }
                else
                {
                    //otherwise focus on agin TextBox With Value 0
                    txtrate.Focus();                  
                    txtrate.Text = "0";                   
                }


            }
            else
            {
                // that function will be used for calculation Like 
                purchase();
                /*  if (txtqty.Text != "" && txtrate.Text != "")
                  {
                      double rate = Convert.ToDouble(txtrate.Text);
                      double Qty = Convert.ToDouble(txtqty.Text);
                      amt = rate * Qty;
                  }*/

            }`enter code here`
        }
于 2017-10-16T06:26:05.387 回答