如何捕获 KeyUp 事件? (请提供代码示例)
我需要捕捉 KeyDown
& 尤其1,2,3,4,5,6,7,8,9
键盘按钮的KeyUp
事件。
效果如何?
我可以捕获 KeyDown
事件,但是 KeyUp 呢?
请提供一些简单的代码。
I need to catch KeyDown
& especially KeyUp
events for 1,2,3,4,5,6,7,8,9
keyboard buttons.
How does it do ?
I can catch KeyDown
event but what about KeyUp ?
Please, provide some simple code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您需要逻辑完全相同,那么您可以将相同的事件处理程序连接到要捕获输入的控件的 KeyUp 和 KeyDown 事件。
If you need the logic to be exactly the same then you can hook up the same event handler to both the KeyUp and KeyDown events of the control you want to capture input on.