/// <summary> /// Shows the About box when the version label is clicked /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void lblAbout_Click(object sender, EventArgs e) { AboutBox dlg = new AboutBox(); dlg.ShowDialog(); }