using System; using System.Windows.Forms; namespace Hush { public partial class About : Form { public About() { InitializeComponent(); } private void OnFormShown(object sender, EventArgs e) { zzzNameVersion.Text = $"{Constants.AssemblyName} v.{Constants.AssemblyVersion}"; } } }