Winify – Diff between revs 69 and 70

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 69 Rev 70
1 using System; 1 using System;
2 using System.Windows.Forms; 2 using System.Windows.Forms;
3   3  
4 namespace Winify 4 namespace Winify
5 { 5 {
6 public partial class AboutForm : Form 6 public partial class AboutForm : Form
7 { 7 {
8 #region Event Handlers 8 #region Event Handlers
9   9  
10 private void AboutForm_Shown(object sender, EventArgs e) 10 private void AboutForm_Shown(object sender, EventArgs e)
11 { 11 {
12 VersionTextBox.Text = $"{Constants.AssemblyName} v.{Constants.AssemblyVersion}"; 12 VersionTextBox.Text = $"{Constants.AssemblyName} v.{Constants.AssemblyVersion}";
13 } 13 }
-   14 private void AboutForm_Load(object sender, EventArgs e)
-   15 {
-   16  
-   17 Utilities.WindowState.FormTracker.Track(this);
-   18 }
14   19  
15 #endregion 20 #endregion
16   21  
17 #region Constructors, Destructors and Finalizers 22 #region Constructors, Destructors and Finalizers
18   23  
19 public AboutForm() 24 public AboutForm()
20 { 25 {
21 InitializeComponent(); 26 InitializeComponent();
22 } 27 }
23   28  
24 /// <summary> 29 /// <summary>
25 /// Clean up any resources being used. 30 /// Clean up any resources being used.
26 /// </summary> 31 /// </summary>
27 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> 32 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
28 protected override void Dispose(bool disposing) 33 protected override void Dispose(bool disposing)
29 { 34 {
30 if (disposing && components != null) 35 if (disposing && components != null)
31 { 36 {
32 components.Dispose(); 37 components.Dispose();
33 } 38 }
34   39  
35 Shown -= AboutForm_Shown; 40 Shown -= AboutForm_Shown;
36   41  
37 base.Dispose(disposing); 42 base.Dispose(disposing);
38 } 43 }
39   44  
40 #endregion 45 #endregion
41   -  
42 private void AboutForm_Load(object sender, EventArgs e) -  
43 { -  
44   -  
45 Utilities.WindowState.FormTracker.Track(this); -  
46 } -  
47 } 46 }
48 } 47 }
49   48  
50
Generated by GNU Enscript 1.6.5.90.
49
Generated by GNU Enscript 1.6.5.90.
51   50  
52   51  
53   52