C# textbox只能輸入數字和小數點

seven_apple發表於2020-10-08
public static void Key_Press(KeyPressEventArgs e, TextBox txt)
        {         
            if (((int)e.KeyChar < 48 || (int)e.KeyChar > 57) && (int)e.KeyChar != 8 && (int)e.KeyChar != 46)

                e.Handled = true;


            //小數點的處理。

            if (e.KeyChar == 46)                           //小數點
            {
                if (txt.Text.Length == 0)
                    e.Handled = true;   //小數點不能在第一位
                else
                {
                    float f;
                    float oldf;
                    bool b1 = false, b2 = false;
                    b1 = float.TryParse(txt.Text, out oldf);
                    b2 = float.TryParse(txt.Text + e.KeyChar.ToString(), out f);
                    if (b2 == false)
                    {
                        if (b1 == true)
                            e.Handled = true;
                        else
                            e.Handled = false;
                    }
                }
            }
        }

相關文章