wpf超链接中的KeyDown事件
我需要对 wpf 超链接上的 keydown 事件执行一些操作。
我有一个简单的富文本框,其中有一个超链接。我希望仅当焦点位于超链接上(即光标位于超链接文本上)时才触发 Keydown 事件。
这样做是行不通的,而且我找不到任何解释为什么这行不通。
<Hyperlink KeyDown="Hyperlink_KeyDown">
test
</Hyperlink>
如果您能帮助我,我将非常感激。
谢谢。 祝你有美好的一天, 阿斯蒂格。
I need to perform some operations on the keydown event on a wpf hyperlink.
I have a simple richtextbox in which i have a hyperlink. I want Keydown event to be fired only when the focus is on the hyperlink, that is the cursor is on the hyperlink text.
Doing this doesn't work and i couldn't find any explanation of why this doesn't work.
<Hyperlink KeyDown="Hyperlink_KeyDown">
test
</Hyperlink>
I would really appreciate it if you could help me.
Thanks.
Have a good day,
Astig.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它不起作用,因为超链接无法像聚焦一样被识别,您可以在父控件(例如网格)中捕获此事件,但在捕获它之前,您必须单击它。
因此,您可以像这样捕获窗口的 keydown 事件:
XAML:
和代码:
编辑
此外,您还可以将焦点设置为超链接,如下所示:
XAML:
代码:
it doesn't work because hyperlink isn't recognized like focused, you may catch this event in parent control for example grid but before it will be caught you must click on it.
So you may catch window's keydown event like this:
XAML:
and code:
Edit
Also you can set focus to hyperlink like that:
XAML:
code: