1、 WinForm下给窗体和按钮添加快捷键
- 设置Enter键要执行的动作:设置FORM的 AcceptButton属性为指定的button按钮。
- 设置ESC键要执行的动作:设置FORM的CacnelButton属性为指定的button按钮。
- 给button添加快捷键 例: 退出(&Q)
Private void btnExit_KeyPress( Object sender , KeyPressEventArgs e )
{
If( Control.ModifierKeys == Keys.Alt && e.KeyChar==Keys.Q )
{
e.Handled = true ;
btnExit_Click( null ,null );
}
}
时间: 2024-10-11 20:42:25