예제 #1
0
        /// <summary>
        /// Resume handler.  Resumes the animation manager
        /// </summary>
        public void OnResume()
        {
            if (_windowOverlapWatchdog != null)
            {
                _windowOverlapWatchdog.Resume();
            }

            _animationManager.Resume();
        }
예제 #2
0
        /// <summary>
        /// Resume handler.  Resumes the animation manager and
        /// any watchdogs that are active
        /// </summary>
        public void OnResume()
        {
            Windows.SetWindowPositionAndNotify(_form, Windows.WindowPosition.CenterScreen);

            if (_windowOverlapWatchdog != null)
            {
                _windowOverlapWatchdog.Resume();
            }

            _animationManager.Resume();
        }