コード例 #1
0
ファイル: MainViewModel.cs プロジェクト: Rodeo314/hb-vt-h264
 /// <summary>
 /// Open the About Window
 /// </summary>
 public void OpenAboutApplication()
 {
     OpenOptionsScreenCommand command = new OpenOptionsScreenCommand();
     command.Execute(OptionsTab.About);
 }
コード例 #2
0
 /// <summary>
 /// Open the options screen to the Audio and Subtitles tab.
 /// </summary>
 public void SetDefaultBehaviour()
 {
     OpenOptionsScreenCommand command = new OpenOptionsScreenCommand();
     command.Execute(OptionsTab.AudioAndSubtitles);
 }
コード例 #3
0
ファイル: MainViewModel.cs プロジェクト: Rodeo314/hb-vt-h264
 /// <summary>
 /// Check for Updates.
 /// </summary>
 public void CheckForUpdates()
 {
     OpenOptionsScreenCommand command = new OpenOptionsScreenCommand();
     command.Execute(OptionsTab.Updates);
 }