Winify – Blame information for rev 70

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