TextBox.SelectAll() 不适用于 TAB
我使用 maskedTextBox.SelectAll()
在 Enter
和 MouseDown
事件中突出显示 MaskedTextBox 中的文本。
当我使用鼠标时它可以工作,但是我通过按 Tab 键转到该文本框,它不起作用。
我在这里缺少什么?
I am using maskedTextBox.SelectAll()
to highlight the text in the MaskedTextBox in the Enter
and MouseDown
events.
It works when I use the mouse, but I go to that textbox by pressing the Tab key, it does not work.
What am I missing here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过
GotFocus
事件?然后它继续列出被触发的事件。看起来当使用鼠标时会触发此事件,因此您可能只需要此处理程序。
Have you tried the
GotFocus
event?It then goes on to list the events that are fired. It looks like this fires when the mouse is used so you might only need this handler.