标签: vb.net events controls
刚才我试图在表单上捕获F1键,但只在选择表单时进行管理,我需要在任何表单控件中检测它
我使用了这段代码:
Select Case e.KeyCode Case Keys.F1 MsgBox("Right") e.Handled = True End Select
答案 0 :(得分:2)
您需要设置Form.KeyPreview=True - 如果为true,则表单将接收所有关键事件。