Winify – Blame information for rev 57

Subversion Repositories:
Rev:
Rev Author Line No. Line
48 office 1 using System;
2 using System.Threading;
3 using System.Windows.Forms;
1 office 4  
5 namespace Winify
6 {
7 public partial class AboutForm : Form
8 {
48 office 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  
1 office 18 #region Constructors, Destructors and Finalizers
19  
20 public AboutForm()
21 {
22 InitializeComponent();
44 office 23 Utilities.WindowState.FormTracker.Track(this);
1 office 24 }
25  
48 office 26 /// <summary>
27 /// Clean up any resources being used.
28 /// </summary>
29 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
30 protected override void Dispose(bool disposing)
31 {
32 if (disposing && components != null)
33 {
34 components.Dispose();
35 }
36  
37 Shown -= AboutForm_Shown;
38  
39 base.Dispose(disposing);
40 }
41  
1 office 42 #endregion
43 }
44 }