public static DialogResult ShowLicenseFormDialog(IWin32Window owner) { if (_instance == null) { _instance = new LicenseForm(); } return(_instance.ShowDialog(owner)); }
private void _licenseButton_Click(object sender, System.EventArgs e) { LicenseForm.ShowLicenseFormDialog(this); }
private void LicenseInformationToolStripMenuItemOnClick(object sender, EventArgs e) { LicenseForm.ShowLicenseFormDialog(this); }