Winify – Diff between revs 44 and 48

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