Winify – Blame information for rev 69

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();
22 }
23  
48 office 24 /// <summary>
25 /// Clean up any resources being used.
26 /// </summary>
27 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
28 protected override void Dispose(bool disposing)
29 {
30 if (disposing && components != null)
31 {
32 components.Dispose();
33 }
34  
35 Shown -= AboutForm_Shown;
36  
37 base.Dispose(disposing);
38 }
39  
1 office 40 #endregion
69 office 41  
42 private void AboutForm_Load(object sender, EventArgs e)
43 {
44  
45 Utilities.WindowState.FormTracker.Track(this);
46 }
1 office 47 }
48 }