What is the difference between a click and mouseclick?
Typically, a single click initiates a user interface action and a double-click extends the action. For example, one click usually selects an item, and a double-click edits the selected item.
When it is clicked the first time, isClicked is false so the if (isClicked) expression will be false and the statement it sets up wont run. Then you set isClicked to true . Now the second time a user clicks the button, the if (isClicked) expression will be true and the statement will run.
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.
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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With