misu – Blame information for rev 5

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Windows.Forms;
3  
4 namespace misu
5 {
6 public partial class AboutForm : Form
7 {
8 #region Constructors, Destructors and Finalizers
9  
10 public AboutForm()
11 {
12 InitializeComponent();
13 }
14  
15 #endregion
16  
5 office 17 #region Event Handlers
18  
4 office 19 private void OnShown(object sender, EventArgs e)
1 office 20 {
4 office 21 VersionTextBox.Text = $"{Constants.AssemblyName} v.{Constants.AssemblyVersion}";
1 office 22 }
5 office 23  
24 #endregion
1 office 25 }
26 }