/// <summary>
        /// If the user leaves the balloon, we reset the timer
        /// </summary>
        private void grid_MouseLeave(object sender, MouseEventArgs e)
        {
            //the tray icon assigned this attached property to simplify access
            TaskbarIcon taskbarIcon = TaskbarIcon.GetParentTaskbarIcon(this);

            taskbarIcon.ChangeBalloonCloseTimer(DISPLAY_DELAY);
        }