/// <summary> /// Open the About Window /// </summary> public void OpenAboutApplication() { OpenOptionsScreenCommand command = new OpenOptionsScreenCommand(); command.Execute(OptionsTab.About); }
/// <summary> /// Open the options screen to the Audio and Subtitles tab. /// </summary> public void SetDefaultBehaviour() { OpenOptionsScreenCommand command = new OpenOptionsScreenCommand(); command.Execute(OptionsTab.AudioAndSubtitles); }
/// <summary> /// Check for Updates. /// </summary> public void CheckForUpdates() { OpenOptionsScreenCommand command = new OpenOptionsScreenCommand(); command.Execute(OptionsTab.Updates); }