Visual C# windows窗體 控制控件只能輸入數字

private void onlyNum(object sender, KeyPressEventArgs e) { e.Handled = false; //這是容許輸入退格鍵 if (e.KeyChar != '\b') { //這是容許輸入0-9數字 if
相關文章
相關標籤/搜索