Example #1
0
        public override void QuitTrackingMode(MouseEventArgs e)
        {
            // Have we quit tracking mode?
            if (_tracking)
            {
                if (_callingControl.Handle != IntPtr.Zero)
                {
                    // Remove any visible tracking indicator
                    if (_currentHotZone != null)
                    {
                        _currentHotZone.RemoveIndicator(new Point(0, 0));
                    }
                }

                base.QuitTrackingMode(e);
            }
        }