public void MouseMove()
 {
     if (!IsOverIcon)
     {
         IsOverIcon = true;
         NotifyTimer.GetInstance().StartTimer();
         OverIconPoint = new KeyValuePair <int, int>(Cursor.Position.X, Cursor.Position.Y);
         _Handler.TimerTick(true);
     }
 }
 private void OnInternalTimedEvent(object source, ElapsedEventArgs e)
 {
     _Handler.TimerTick(false);
 }