标签控件上的键盘助记符的用途是什么?

发布于 2024-11-02 17:56:15 字数 130 浏览 1 评论 0原文

在C#中的标签控件上添加助记符有什么意义?

我有一个带有文本 "&SomeText" 的标签。

当我按 ALT+S 时会触发什么事件(我已经尝试过 OnClick 但它没有被触发)

What's the point of adding mnemonic on a label control in C#?

I have a label with the text "&SomeText".

What event is triggered when i press ALT+S (I've tried OnClick but it's not fired)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

南城追梦 2024-11-09 17:56:15

添加助记符的目的是通过减少用户对鼠标的依赖来提高应用程序的可访问性。

如果您的控件在标签后直接有 tabindex,则调用助记符将触发控件上的“enter”事件。您会注意到焦点转移到该控件。

因此,助记符并不是针对标签本身,而是针对其旁边的控件(按 Tab 键顺序+1)。

The point of adding a mnemonic is to increase the accessibility of your app by reducing the reliance of a user on the mouse.

If you have a control that has a tabindex directly after the label, then invoking the mnemonic will fire the "enter" event on the control. You will notice the focus shift to this control.

So, the mnemonic is not for the label itself, but actually for the control next to it (+1 in the tab order).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文