0
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)Keys.Tab)
{
keybox4.Focus();
}
}
它不工作,但輸入字符的工作?如何使用Tab鍵字符在TextBox中使用KeyPress事件?