using System; using System.Windows.Forms; namespace Zzz { public partial class AboutForm : Form { #region Constructors, Destructors and Finalizers public AboutForm() { InitializeComponent(); } #endregion #region Event Handlers private void OnFormShown(object sender, EventArgs e) { zzzNameVersion.Text = $"{Constants.AssemblyName} v.{Constants.AssemblyVersion}"; } private void AboutForm_Load(object sender, EventArgs e) { Utilities.WindowState.FormTracker.Track(this); } #endregion } }