What is the difference between a click and mouseclick?

后端 未结 2 1581
野的像风
野的像风 2020-12-25 10:39

What is the difference between a click and mouseclick?

相关标签:
2条回答
  • 2020-12-25 11:10

    Assuming you're referring to WinForm Control events, from the MSDN documentation for Control.Click:

    The Click event passes an EventArgs to its event handler, so it only indicates that a click has occurred. If you need more specific mouse information (button, number of clicks, wheel rotation, or location), use the MouseClick event. However, the MouseClick event will not be raised if the click is caused by action other than that of the mouse, such as pressing the ENTER key.

    0 讨论(0)
  • 2020-12-25 11:28

    A click can be caused by not only a mouse click, but also some events like a pressed key, etc. For more information, see Control.Click Event.

    0 讨论(0)
提交回复
热议问题