100 を超える値を入力できないを作成したいTextBox
。数値のみが許可され、数値TextBox
はオプションではありません。これは今のところ私のコードです:
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar)) { e.Handled = true; } // only numbers
}
何か案は?