OpenHome.Songcast.ExtendedNotifyIcon.EventTargetMouseMove C# (CSharp) Method

EventTargetMouseMove() public method

public EventTargetMouseMove ( object sender, MouseEventArgs e ) : void
sender object
e MouseEventArgs
return void
        void EventTargetMouseMove(object sender, MouseEventArgs e)
        {
            iIsMouseOver = true;
            iMousePosition = System.Windows.Forms.Control.MousePosition; // Track the position of the mouse over the notify icon
            iTimer.Start();  // The timer counts down and closes the window, as the mouse moves over the icon, keep starting (resetting) this to stop it from closing the popup
        }