示例#1
0
 /// <summary>
 /// Shows the MPAiSoundScoreBoard, if it exists.
 /// </summary
 public static void ShowMPAiSoundScoreReport()
 {
     if (File.Exists(MPAiSoundScoreReportHTMLAddress))
     {
         IoController.ShowInBrowser(MPAiSoundScoreReportHTMLAddress);
     }
 }
示例#2
0
 /// <summary>
 /// When the user selects instruction manual, launches the browser for them to read the github wiki.
 /// This isn't the best solution, especially with the current state of th ewiki, but for now, it was the one being used in the stable version.
 /// </summary>
 /// <param name="sender">Automatically generated by Visual Studio.</param>
 /// <param name="e">Automatically generated by Visual Studio.</param>
 private void instructionToolStripMenuItem_Click(object sender, EventArgs e)
 {
     // Open the browser to view the github wiki, at least until we get a proper system for this.
     IoController.ShowInBrowser("https://github.com/JSCooke/MPAi/wiki/Instruction-Manual");
 }