将键盘快捷键与 LinkLabel 控件结合使用
我注意到分配给标准 .NET WinForms 表单中的 linklabel 控件的键盘快捷键不起作用。
我创建了一个 LinkLabel 控件实例并将 Text 属性指定为“Select &All”。 对于大多数控件(标签、按钮、单选按钮等),这将导致 Alt+A 成为触发默认事件(单击)的指定键盘快捷键。 LinkLabel 不会发生这种情况(尽管对于其他控件来说它工作正常)
- 我已经验证键盘快捷键不是重复的。
- 我已检查快捷方式是否正在设置焦点而不是触发单击。 焦点保持不变。
- 我已验证 UseMnemonic 属性已设置为 true。
有任何想法吗?
解决方案
谢谢查理的正确答案。 正是我所需要的。 我做了一些修改,因为此代码片段无法按原样编译。 LinkLabelLinkClickedEventArgs
需要 LinkLabel.Link
作为构造参数,而不是 LinkLabel
。
class LinkLabelEx : LinkLabel
{
protected override bool ProcessMnemonic(char charCode)
{
if (base.ProcessMnemonic(charCode))
{
if (this.Links.Count == 0)
return false;
OnLinkClicked(new LinkLabelLinkClickedEventArgs(this.Links[0]));
return true;
}
return false;
}
}
I've noticed that keyboard-shortcuts assigned to linklabel controls in standard .NET WinForms forms are not functioning.
I have created a LinkLabel control instance and assigned the Text property to be "Select &All". For most controls (label, button, radio button, etc) this would cause Alt+A to become the designated keyboard shortcut to trigger the default event (Clicked). This is not happening for the LinkLabel (though it is working okay for other controls)
- I have verified that the keyboard shortcut is not a duplicate.
- I have checked to see if the shortcut is setting the focus rather than triggering Clicked. The focus remains unchanged.
- I have verified that the UseMnemonic property is set to true.
Any ideas?
Solution
Thank you Charlie for the correct answer. Exactly what I needed. I made a slight modification since this code snippet wouldn't compile as-is. LinkLabelLinkClickedEventArgs
requires a LinkLabel.Link
as a construction parameter rather thank a LinkLabel
.
class LinkLabelEx : LinkLabel
{
protected override bool ProcessMnemonic(char charCode)
{
if (base.ProcessMnemonic(charCode))
{
if (this.Links.Count == 0)
return false;
OnLinkClicked(new LinkLabelLinkClickedEventArgs(this.Links[0]));
return true;
}
return false;
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信这只是LinkLabel的一个缺点; 当您使用助记词时,它不会生成点击事件。 但是,我使用以下代码作为解决方法,并取得了良好的成功:
I believe this is just a shortcoming of LinkLabel; it doesn't generate a click event when you use its mnemonic. However, I've used the following code as a workaround with good success: