UserControl 中的 WPF OnKeyUp 未触发
我有带有用户控件的窗口。我订阅了 OnKeyUp 事件,但它没有触发。 在 UserControl 构造函数中,我使用方法 this.Focus(); 但 onkeyup 仍然没有触发。 出了什么问题,我该怎么做才能赶上这个事件?
I have Window with UserControl. I subscribed for OnKeyUp event but it does not firing.
Inside UserControl constructor i use method this.Focus();
But still onkeyup does not firing.
What is wrong and what i can to do to catch this event?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是silverlight场景,我不能说它能在wpf中工作!
keyUp 事件被用户控件触发并且效果很好,下面是如何为用户控件的 KeyUp 注册事件处理程序的代码片段:
This is the silverlight scenario , I cannot say it will work in wpf!
keyUp event gets fired of the usercontrol and it works great , here is the code snippet how to register the event handler for KeyUp of usercontrol :