如何使用键盘按键打开表单

发布于 2024-11-02 09:08:20 字数 56 浏览 2 评论 0原文

我希望能够使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放飞的风筝 2024-11-09 09:08:20

将表单 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文