1
1
Fork 0
mirror of https://github.com/FellippeHeitor/InForm.git synced 2024-09-16 19:03:54 +00:00

Updated Mouse events (markdown)

FellippeHeitor 2017-03-14 23:36:08 -03:00
parent ce83239db3
commit 0a2178bcde

@ -1,15 +1,15 @@
#Click
# Click
Click events are triggered when a control is active, visible and the user presses the left mouse button while hovering a control and releases the button while still hovering the same control.
#MouseDown/MouseUp
# MouseDown/MouseUp
The MouseDown event occurs when the left mouse button is first pressed on a control. The MouseUp event is triggered when the left mouse button is released on a control. Right after a MouseUp event is fired, a Click event is also triggered.
#MouseEnter/MouseLeave
# MouseEnter/MouseLeave
The MouseEnter event occurs when the mouse pointer enters a control's rectangle area. The MouseLeave event is triggered when the cursor leaves the rectangle area of a control.
By adding code to these two events, you can, for example, emulate a hovering effect (change a control's background color when MouseEnter is triggered and restoring it when MouseLeave is run).
##Controls that respond to mouse events:
## Controls that respond to mouse events:
* [[Button]]
* [[Label]]
* [[Textbox]]