如何禁用文本框的 GotFocus?
我有一个在 GotFocus
上执行某些操作的 textbox
。
如何禁用此文本框
上的GotFocus
事件?
如何重新启用它?
抱歉,我忘记了 - 我在 Windows-mobile 6.5 上工作
提前致谢。
I have a textbox
that does something on GotFocus
.
How can I disable the GotFocus
event on this textbox
?
How to enable it back?
Sorry, I forgot - i work on Windows-mobile 6.5
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您也可以随时启用或禁用该控件。
上面的代码太短,无法为其编写例程,但更容易理解要点。
You could always Enable or Disable the control as well
The code above is much too short to write a routine for, but gets the point across easier.
可能是
TextBox.CanFocus = false;
然后是CanFocus = true;
?May be
TextBox.CanFocus = false;
and thenCanFocus = true;
?如果您使用WPF,则应使用
TesxBox.Focusable
属性。TesxBox.Focusable = true
使您能够获得焦点。TesxBox.Focusable = false
- 使您无法获得焦点if you use WPF,
TesxBox.Focusable
property should be used.TesxBox.Focusable = true
enables you to got focus.TesxBox.Focusable = false
- disables you to got focus