Korero – Diff between revs 1 and 2

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