Zzz – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Windows.Forms;
3  
4 namespace Zzz
5 {
6 public partial class AboutForm : Form
7 {
8 #region Constructors, Destructors and Finalizers
9  
10 public AboutForm()
11 {
12 InitializeComponent();
13 }
14  
15 #endregion
16  
17 #region Event Handlers
18  
19 private void OnFormShown(object sender, EventArgs e)
20 {
21 zzzNameVersion.Text = $"{Constants.AssemblyName} v.{Constants.AssemblyVersion}";
22 }
23  
24 private void AboutForm_Load(object sender, EventArgs e)
25 {
26 Utilities.WindowState.FormTracker.Track(this);
27 }
28  
29 #endregion
30  
31  
32 }
33 }