要限制TextBox控件内输入值的范围,可以使用以下方法:
private void textBox_Validating(object sender, CancelEventArgs e)
{
TextBox textBox = (TextBox)sender;
int value;
if (!int.TryParse(textBox.Text, out value) || value < 0 || value > 100)
{
e.Cancel = true;
MessageBox.Show("输入值必须在0到100之间");
textBox.SelectAll();
textBox.Focus();
}
}
private void textBox_KeyPress(object sender, KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar))
{
e.Handled = true;
}
}
在上述示例中,只允许输入数字和控制字符,这将限制输入值的范围。您还可以根据需要添加其他逻辑来限制输入值的范围。
请注意,这些示例仅限于整数值的范围限制。如果需要限制其他类型的值或更复杂的限制逻辑,可能需要进行适当的修改。