Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 c#/xaml 开发简单的游戏。我想使用键盘箭头键实现游戏控制。所以我尝试在 Page 类上实现 KeyDown/KeyUp 事件,但它没有触发。
有谁知道为什么它不起作用?
谢谢
刚刚为我的问题找到了解决方案。您需要在构造函数中像这样连接这些事件:
Windows.UI.Core.CoreWindow.GetForCurrentThread().KeyDown += App_KeyDown; Windows.UI.Core.CoreWindow.GetForCurrentThread().KeyUp += App_KeyUp;