2016年12月19日 星期一

C# 限定textbox只能輸入數字



限定user只能輸入數字,若按下非數字按鈕,就不給按


       private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (((int)e.KeyChar < 48 | (int)e.KeyChar > 57) & (int)e.KeyChar != 8)
            {
                e.Handled = true;
            }
        }


參考:

沒有留言:

張貼留言