Winify – Blame information for rev 67

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