如何使用 Alt + 聚焦文本框信

发布于 2024-11-07 20:53:43 字数 241 浏览 0 评论 0原文

我需要使用 Alt+Letter 组合快速聚焦文本框。在我的表单中,每个文本框都有一个标签。对于此标签,我可以将名称指定为 '&My Label',并且当我按 Alt 按钮时,M 字母将带有下划线。但是我如何才能聚焦文本框(在 winforms 中)?

PS 我记得 WPF 可以将标签与文本框绑定。如果标签获得焦点,文本框将自动获得焦点。

I need to quick focus the text box using Alt+Letter combination. In my form for each textbox is a label. For this label I can specify name as '&My Label' and M letter will be underlined when I press the Alt button. But how I can focus the textbox (in winforms)?

P.S. As I remember WPF has possibility to bind label with textbox. And if label get focus textbox will get focus automatically.

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

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

发布评论

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

评论(2

铜锣湾横着走 2024-11-14 20:53:44

这会自动进行。只需确保您想要聚焦的 TextBox 是 Tab 键顺序中的下一个,即,如果 LabelTabIndex = 0,则 < code>TextBox 需要 TabIndex = 1。

This works automatically. Just make sure the TextBox you want to focus is the next one in the tab order, i.e. if the Label has TabIndex = 0, the TextBox needs TabIndex = 1.

诠释孤独 2024-11-14 20:53:44

您需要设置选项卡索引。它会自动处理。您可以通过以下方式查看/设置选项卡索引

查看> Tab 键顺序菜单

You need to set the Tab Index. It will automatically handled. You can view/set the Tab index by

View > Tab Order menu

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