At.FF.Krems.FullscreenBrowser.ScreenRefresher.HideScreenRefresher C# (CSharp) 메소드

HideScreenRefresher() 공개 메소드

Hides the screen refresher.
public HideScreenRefresher ( ) : void
리턴 void
        public void HideScreenRefresher()
        {
            if (!this.IsVisible)
            {
                return;
            }

            if (!this.CheckAccess())
            {
                this.Dispatcher.BeginInvoke(new Action(this.HideScreenRefresher));
                return;
            }

            this.Dispatcher.BeginInvoke(new Action(this.eventHook.Stop));
            this.Hide();
            this.StartTimer();
        }