At.FF.Krems.FullscreenBrowser.App.OnExit C# (CSharp) Method

OnExit() protected method

Raises the E:System.Windows.Application.Exit event.
protected OnExit ( System.Windows.ExitEventArgs e ) : void
e System.Windows.ExitEventArgs An that contains the event data.
return void
        protected override void OnExit(ExitEventArgs e)
        {
            this.Taskbar.Dispose();  // The icon would clean up automatically, but this is cleaner
            base.OnExit(e);
        }