HamBook – Blame information for rev 59

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Threading;
3 using System.Windows.Forms;
4  
5 namespace HamBook
6 {
7 public partial class AboutForm : Form
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  
18 #region Constructors, Destructors and Finalizers
19  
20 public AboutForm()
21 {
53 office 22 InitializeComponent();
1 office 23 }
24  
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 {
54 office 31 if (disposing && components != null) components.Dispose();
1 office 32  
33 Shown -= AboutForm_Shown;
34  
35 base.Dispose(disposing);
36 }
37  
38 #endregion
59 office 39  
40 private void AboutForm_Load(object sender, EventArgs e)
41 {
42 Utilities.WindowState.FormTracker.Track(this);
43 }
1 office 44 }
45 }