如何使用键盘按键打开表单
我希望能够使用 VB.net 按shift+D+A+L 打开另一个表单(form2),我该怎么做?
I would like to be able to press shift+D+A+L to open another form (form2) ussing VB.net how do i do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将表单 KeyPreview 属性设置为 true,然后将代码添加到表单 KeyDown 事件。是
然后使用 if 语句,例如
If e.KeyCode = Keys.F1 然后
添加您想要的每个键作为条件,并且由于您想使用 shift 将其添加到您的 if;
e.modifier = keys.shift
然后创建第二个表单的新实例并调用 showdialog 函数。
Set the forms KeyPreview property to true, then add code to the forms KeyDown event. Y
Then use an if statement e.g
If e.KeyCode = Keys.F1 Then
Add each key you want as a condition and since you want to use shift add this to your if;
e.modifier = keys.shift
Then create a new instance of the second form and call the showdialog function.