From 72c557415f67e40e8f0142eb44c006c607f02b81 Mon Sep 17 00:00:00 2001 From: FellippeHeitor Date: Wed, 21 Dec 2016 14:42:54 -0200 Subject: [PATCH] Updated Mouse events (markdown) --- Mouse-events.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Mouse-events.md b/Mouse-events.md index 2d5051b..f7e59ae 100644 --- a/Mouse-events.md +++ b/Mouse-events.md @@ -4,6 +4,11 @@ Click events are triggered when a control is active, visible and the user presse #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 +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: * [[Button]] * [[Label]]