解决的是enter键的时候,按照tab键使用
private void txtpwd_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)13)
{
SendKeys.Send("{Tab}");
// button1.Focus();
}
}