.net标签加速键事件
基本问题,但我无法弄清楚...我有一个带有加速键集的标签(例如“&Add”),并且我想在使用该快捷键时将焦点集中到文本框,Alt+A,被按下。这对应什么事件?我尝试了单击事件,但没有执行任何操作...
编辑:找到了我自己的答案 - 它将焦点设置为选项卡顺序中的下一个控件。所以我想我修改后的问题是,有没有办法抓住这个问题,以便我可以让它选择文本框中的所有文本?
Basic question, but I can't figure it out...I have a label with an accelerator key set (e.g. "&Add") and I want to give focus to a textbox when that shortcut, Alt+A, is pressed. What event does this correspond to? I tried the click event but that didn't do anything...
edit: found my own answer - it sets focus to the control that is next in the tab order. so I guess my revised question is, is there a way to catch this so I can have it select all the text in the textbox?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
处理 TextBox 的 GotFocus 事件
Handle GotFocus event of the TextBox