我有Combo Box
并且我想确保用户不能在Combo Box
. 我曾尝试处理 the 的Key Down
事件,Combo Box
但它不起作用。
这是我尝试过的
private void comboBox1_KeyDown(object sender, KeyEventArgs e)
{
string regexString = "^[A-Z]";
Match matches = Regex.Match(comboBox1.Text, regexString);
if (!matches.Success)
{
e.SuppressKeyPress = true;
comboBox1.SelectedIndex = 0;
}
}
请问有没有更好的方法来做到这一点?