.NET:TabControl 中的双击事件

发布于 2024-07-05 04:35:12 字数 94 浏览 7 评论 0原文

当用户通过双击选项卡(而不是仅单击它)更改选项卡时,我想拦截 .NET Windows Forms TabControl 中的事件。

你知道我该怎么做吗?

I would like to intercept the event in a .NET Windows Forms TabControl when the user has changed tab by double-clicking the tab (instead of just single-clicking it).

Do you have any idea of how I can do that?

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

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

发布评论

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

评论(3

旧城空念 2024-07-12 04:35:12

TabControl 的 MouseDoubleClick 事件似乎对双击反应良好。 我要做的唯一额外步骤是在 TabIndexChanged 事件之后设置一个短计时器,以跟踪已选择的新选项卡并忽略计时器之外发生的任何双击。 这将防止双击选定的选项卡。

The MouseDoubleClick event of the TabControl seems to respond just fine to double-clicking. The only additional step I would do is set a short timer after the TabIndexChanged event to track that a new tab has been selected and ignore any double-clicks that happen outside the timer. This will prevent double-clicking on the selected tab.

神经大条 2024-07-12 04:35:12

由于某种原因,Jason Z 建议的 MouseDoubleClick 仅在单击选项卡时触发,并且单击选项卡面板不会执行任何操作,所以这正是我所寻找的。

For some reason, MouseDoubleClick, as suggested by Jason Z is only firing when clicking on the tabs and clicking on the tab panel does not do anything, so that's exactly what I was looking for.

最丧也最甜 2024-07-12 04:35:12

如何子类化 TabControl 类并添加您自己的 DoubleClick 事件?

How about subclassing the TabControl class and adding your own DoubleClick event?

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