Silverlight 中的热键?
有没有办法在 Silverlight 中创建全局密钥?我向最顶部的 Page 元素添加了一个 KeyDown 事件处理程序。当 Button、TextBox、Calendar 和 RichTextBox 等元素获得焦点时,我可以捕获关键信号。但是 DatePicker 不允许我在页面级别处理按键按下事件。有什么方法可以在非 OOB SL 中制作热键吗?
PS 我假设 DatePicker 控件的行为与其他控件不同,因为它仍然位于 Silverlight 工具包中。
Is there a way to create global keys in Silverlight? I added a KeyDown event handler to the topmost Page element. I can catch the key signal when elements like a Button, TextBox, Calendar, and RichTextBox have focus. But the DatePicker won't let me handle the key down event at the Page level. Any way to make a hotkey in non-OOB SL?
P.S. I am assuming that the DatePicker control behaves differently than others as it is still in the Silverlight Toolkit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是否尝试过使用 AddHandler 方法?使用此方法,您可以添加处理程序并定义是否也想处理已处理的事件。
在我的简单示例中,我将其添加到 app.xaml.cs 中的 RootVisual 中。
我用 DatePicker 尝试过,它有效。
希望这有帮助!
BR、
TJ
have you tried using the AddHandler method? With this method you can add a handler and define if you want to handle already handled events, too.
In my simple example I added it to the RootVisual in the app.xaml.cs.
I tried it with a DatePicker and it works.
Hope this helps!
BR,
TJ
这可能对您有帮助。作者提供了两种方法:使用 HTML 桥(当您的 Silverlight 没有焦点时)和使用 Application.RootVisual。
我自己没有尝试过,所以我不知道它是否有效。
This may help you. The author provides two ways using HTML bridge (when your Silverlight does not have focus) and using the KeyUp event on Application.RootVisual.
I have not tried it myself so I wouldn't know if it's working.