(控件)按回车键时移动鼠标焦点

以C# WinForm 中的TextBox 为例:

     激活事件:Textbox1_keyPress(Object sender,KeyPressEventArgs e)

{

if(e.KeyChar=='\r') //判断是否按下回车

{

textBox2.Focus();  //将焦点移动到下一控件上

}

}

posted on 2016-07-27 12:54  路上有你F  阅读(361)  评论(0编辑  收藏  举报