Winify – Diff between revs 67 and 69

Subversion Repositories:
Rev:
Only display areas with differencesRegard whitespace
Rev 67 Rev 69
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   14  
15 #endregion 15 #endregion
16   16  
17 #region Constructors, Destructors and Finalizers 17 #region Constructors, Destructors and Finalizers
18   18  
19 public AboutForm() 19 public AboutForm()
20 { 20 {
21 InitializeComponent(); 21 InitializeComponent();
22 Utilities.WindowState.FormTracker.Track(this); -  
23 } 22 }
24   23  
25 /// <summary> 24 /// <summary>
26 /// Clean up any resources being used. 25 /// Clean up any resources being used.
27 /// </summary> 26 /// </summary>
28 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> 27 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
29 protected override void Dispose(bool disposing) 28 protected override void Dispose(bool disposing)
30 { 29 {
31 if (disposing && components != null) 30 if (disposing && components != null)
32 { 31 {
33 components.Dispose(); 32 components.Dispose();
34 } 33 }
35   34  
36 Shown -= AboutForm_Shown; 35 Shown -= AboutForm_Shown;
37   36  
38 base.Dispose(disposing); 37 base.Dispose(disposing);
39 } 38 }
40   39  
41 #endregion 40 #endregion
-   41  
-   42 private void AboutForm_Load(object sender, EventArgs e)
-   43 {
-   44  
-   45 Utilities.WindowState.FormTracker.Track(this);
-   46 }
42 } 47 }
43 } 48 }
44   49  
45
Generated by GNU Enscript 1.6.5.90.
50
Generated by GNU Enscript 1.6.5.90.
46   51  
47   52  
48   53