/// <summary> /// Show Certificate Form /// </summary> private void showCertificateForm() { //If Certificate Form is not instantiated, Instantiate if (_certificateForm == null) _certificateForm = new CertificateForm { MdiParent = this }; _certificateForm.Show(); }
/// <summary> /// Show Certificate Form /// </summary> private void showCertificateForm() { //If Certificate Form is not instantiated, Instantiate if (_certificateForm == null) { _certificateForm = new CertificateForm { MdiParent = this } } ; _certificateForm.Show(); }