如何检测 Control.Click 事件是由鼠标、键盘还是其他方式触发的?

发布于 2024-11-19 12:23:31 字数 308 浏览 2 评论 0原文

如何判断 Control .Click事件是由鼠标触发还是由键盘触发?

编辑:

处理 MouseClickKeyPress 对我来说不起作用,因为那样我怎么知道是否有其他东西触发了点击? (例如PerformClick

How can I tell if a Control.Click event was triggered by the mouse or by the keyboard?

Edit:

Handling MouseClick and KeyPress does't work for me, because then how would I know if something else triggered the click? (e.g. PerformClick)

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

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

发布评论

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

评论(2

樱娆 2024-11-26 12:23:31

你不能。使用 Control.MouseClick 事件并Control.KeyPress 事件,以便您能说出事件的来源。请记住,具有焦点的控件上的空格和 Ctrl+ 键也可以生成按钮上的单击。

You can't. Use the Control.MouseClick event and the Control.KeyPress event so you can tell the source of the event. And remember that a space on the control with focus and a Ctrl+ key can generate a click on a button as well.

南…巷孤猫 2024-11-26 12:23:31

您无法判断,但如果您需要知道事件的来源,可以使用 MouseClick 和 KeyPress。

void handler(object sender, EventArgs e)
{
    bool mouseEvent = (e is MouseEventArgs);
    bool keyEvent = (e is KeyEventArgs);
    bool performClick = (e is EventArgs) && !keyEvent && !mouseEvent;
}

You can not tell, but you can use MouseClick and KeyPress if you need to know what originated the event.

void handler(object sender, EventArgs e)
{
    bool mouseEvent = (e is MouseEventArgs);
    bool keyEvent = (e is KeyEventArgs);
    bool performClick = (e is EventArgs) && !keyEvent && !mouseEvent;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文