如何禁用文本框的 GotFocus?

发布于 2024-12-07 01:56:27 字数 196 浏览 1 评论 0原文

我有一个在 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 技术交流群。

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

发布评论

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

评论(3

泪眸﹌ 2024-12-14 01:56:27

您也可以随时启用或禁用该控件。

void ButtonEnabled(bool value) {
   textBox1.Enabled = value;
}

上面的代码太短,无法为其编写例程,但更容易理解要点。

You could always Enable or Disable the control as well

void ButtonEnabled(bool value) {
   textBox1.Enabled = value;
}

The code above is much too short to write a routine for, but gets the point across easier.

揽清风入怀 2024-12-14 01:56:27

可能是 TextBox.CanFocus = false; 然后是 CanFocus = true;

May be TextBox.CanFocus = false; and then CanFocus = true; ?

情丝乱 2024-12-14 01:56:27

如果您使用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

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