VB2010 - KeyDown 事件未执行

发布于 2024-09-10 21:09:37 字数 347 浏览 7 评论 0原文

我有一个乒乓球类型的游戏,我想要空格键来暂停游戏...这是我的代码来检测何时按下空格键。

Private Sub PongMain_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
        If e.KeyValue = Keys.Space Then
            Application.Exit()
        End If
    End Sub

由于某种原因,应用程序没有关闭...这段代码是否有我没有看到的问题?

谢谢

I have a pong type of game and I want the spacebar to pause the game... Here is my code to detect when the space bar is pressed.

Private Sub PongMain_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown
        If e.KeyValue = Keys.Space Then
            Application.Exit()
        End If
    End Sub

For some reason the application is not closing... IS there something wrong with this code that I am not seeing?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

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