コード例 #1
0
ファイル: AboutBox.cs プロジェクト: libesz/MAS345_GUI
 public static void ShowDialog(string CurrentBuild, string LatestBuild)
 {
     AboutBox Instance = new AboutBox();
     Instance.versionLabel.Text = "Version: " + Assembly.GetExecutingAssembly().GetName().Version.ToString()
                                  + ", build: " + CurrentBuild.Substring(0,8);
     Instance.ShowDialog();
 }
コード例 #2
0
ファイル: MainForm.cs プロジェクト: balazs4/MAS345_GUI
 private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
 {
     AboutBox.ShowDialog(CurrentGitHash, LatestGitHash);
 }