コード例 #1
0
ファイル: Regist.cs プロジェクト: vec2link2018/SE
 //registnameTbx-->registpasswdTbx
 private void RegistNameTbx_KeyPress(object sender, KeyPressEventArgs e)
 {
     if (e.KeyChar == (char)Keys.Enter)
     {
         RegistPawdTbx.Focus();
     }
 }
コード例 #2
0
ファイル: Regist.cs プロジェクト: vec2link2018/SE
 //registnameTbx-->registpasswdTbx
 private void RegistNameTbx_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.KeyValue == 40)
     {
         RegistPawdTbx.Focus();
     }
 }