misu – Diff between revs 4 and 5

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 4 Rev 5
Line 1... Line 1...
1 using System; 1 using System;
2 using System.Text; -  
3 using System.Windows.Forms; 2 using System.Windows.Forms;
4 using static misu.Utilities; -  
Line 5... Line 3...
5   3  
6 namespace misu 4 namespace misu
7 { 5 {
8 public partial class AboutForm : Form 6 public partial class AboutForm : Form
Line 14... Line 12...
14 InitializeComponent(); 12 InitializeComponent();
15 } 13 }
Line 16... Line 14...
16   14  
Line -... Line 15...
-   15 #endregion
-   16  
17 #endregion 17 #region Event Handlers
18   18  
19 private void OnShown(object sender, EventArgs e) 19 private void OnShown(object sender, EventArgs e)
20 { 20 {
-   21 VersionTextBox.Text = $"{Constants.AssemblyName} v.{Constants.AssemblyVersion}";
-   22 }
21 VersionTextBox.Text = $"{Constants.AssemblyName} v.{Constants.AssemblyVersion}"; 23  
22 } 24 #endregion
23 } 25 }