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 #endregion
25 }
26 }