VixenModules.Preview.DisplayPreview.Views.VisualizerView.DisplayPreview_Closing C# (CSharp) Method

DisplayPreview_Closing() private method

private DisplayPreview_Closing ( object sender, System e ) : void
sender object
e System
return void
        private void DisplayPreview_Closing(object sender, System.ComponentModel.CancelEventArgs e)
        {
            if (!SystemClosing) {
                System.Windows.MessageBox.Show("To close the Display Preview, click the 'Configure Previews' " +
                    "button on the main Vixen Administration window and then uncheck the preview in the list.",
                    "Close Display Preview");
                e.Cancel = true;
            }
        }