Ejemplo n.º 1
0
 /// <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);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Check for Updates.
 /// </summary>
 public void CheckForUpdates()
 {
     OpenOptionsScreenCommand command = new OpenOptionsScreenCommand();
     command.Execute(OptionsTab.Updates);
 }