禁用或只读字段未触发 MouseClick 事件?

发布于 2024-11-30 15:16:11 字数 221 浏览 0 评论 0原文

我在那里使用 .NET C#。我有一个文本框。我给它分配了一个 MouseClick 事件。

通常,当我单击控件时会触发该事件。

但是,如果我设置文本框的 [Enabled=false] 或 [ReadOnly=true] 属性,则不会触发 MouseClick 事件。

我该如何修复它?

谢谢。

I'm using .NET C# there. I have a textbox. I assigned it a MouseClick event.

Normally the event is fired when I click the control.

But if I set the textbox's [Enabled=false] or [ReadOnly=true] properties, the MouseClick event is not fired.

How can I fix it?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

静水深流 2024-12-07 15:16:11

显然禁用该控件是问题所在,您可以将其保留为启用状态并且不是只读状态,然后在 KeyPress/KeyDown 事件中避免/取消任何输入,以便用户无法更改内容。

clearly disabling the control is the issue, you could leave it enabled and not read-only then in the KeyPress/KeyDown event you avoid/cancel any input so the user cannot change the content.

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