Spring – Diff between revs 1 and 2

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 1 Rev 2
Line 6... Line 6...
6 namespace Spring.About 6 namespace Spring.About
7 { 7 {
8 public partial class AboutForm : Form 8 public partial class AboutForm : Form
9 { 9 {
10 #region Event Handlers 10 #region Event Handlers
-   11 private void AboutForm_Load(object sender, EventArgs e)
-   12 {
-   13 Utilities.WindowState.FormTracker.Track(this);
-   14 }
Line 11... Line 15...
11   15  
12 private void AboutForm_Shown(object sender, EventArgs e) 16 private void AboutForm_Shown(object sender, EventArgs e)
13 { 17 {
14 VersionTextBox.Text = $"{Constants.AssemblyName} v.{Constants.AssemblyVersion}"; 18 VersionTextBox.Text = $"{Constants.AssemblyName} v.{Constants.AssemblyVersion}";
Line 19... Line 23...
19 #region Constructors, Destructors and Finalizers 23 #region Constructors, Destructors and Finalizers
Line 20... Line 24...
20   24  
21 public AboutForm() 25 public AboutForm()
22 { 26 {
23 InitializeComponent(); -  
24 Utilities.WindowState.FormTracker.Track(this); 27 InitializeComponent();
Line 25... Line 28...
25 } 28 }
26   29  
27 public AboutForm(CancellationToken cancellationToken) : this() 30 public AboutForm(CancellationToken cancellationToken) : this()
Line 44... Line 47...
44   47  
45 base.Dispose(disposing); 48 base.Dispose(disposing);
Line 46... Line 49...
46 } 49 }
-   50  
-   51 #endregion
47   52  
48 #endregion 53  
49 } 54 }