Windowsフォームのテキストボックスで数字のみを入力する方法
数字以外の入力を無効化する方法: テキストボックスのKeyPressイベントを使用して、入力されたキーが数字以外の場合に入力をキャンセルします。private void textBox1_KeyPress(object sender, KeyPressEventArgs e) { if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar)) { e.Handled = true; } }>>More