如何使用 Alt + 聚焦文本框信
我需要使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这会自动进行。只需确保您想要聚焦的
TextBox
是 Tab 键顺序中的下一个,即,如果Label
的TabIndex
= 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 theLabel
hasTabIndex
= 0, theTextBox
needsTabIndex
= 1.您需要设置选项卡索引。它会自动处理。您可以通过以下方式查看/设置选项卡索引
You need to set the Tab Index. It will automatically handled. You can view/set the Tab index by