将键盘快捷键与 LinkLabel 控件结合使用

发布于 2024-07-15 22:21:40 字数 959 浏览 8 评论 0原文

我注意到分配给标准 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

拥有 2024-07-22 22:21:40

我相信这只是LinkLabel的一个缺点; 当您使用助记词时,它不会生成点击事件。 但是,我使用以下代码作为解决方法,并取得了良好的成功:

class BetterLinkLabel : LinkLabel
{
  protected override bool ProcessMnemonic( char charCode )
  {
    if( base.ProcessMnemonic( charCode ) )
    {
      // TODO: pass a valid LinkLabel.Link to the event arg ctor
      OnLinkClicked( new LinkLabelLinkClickedEventArgs( null ) );
      return true;
    }
    return false;
  }
}

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:

class BetterLinkLabel : LinkLabel
{
  protected override bool ProcessMnemonic( char charCode )
  {
    if( base.ProcessMnemonic( charCode ) )
    {
      // TODO: pass a valid LinkLabel.Link to the event arg ctor
      OnLinkClicked( new LinkLabelLinkClickedEventArgs( null ) );
      return true;
    }
    return false;
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文