/// <summary>
 /// Create a new certificate.
 /// </summary>
 private void OnCreateCertificateClick(object sender, EventArgs e)
 {
     using (var dialog = new CertificateWizard())
     {
         if (dialog.ShowDialog(this) != DialogResult.OK)
             return;
         OpenCertificate(dialog.Path, dialog.Password);
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Create new certificate
 /// </summary>
 private void OnCreateClick(object sender, EventArgs e)
 {
     using (var dialog = new CertificateWizard())
     {
         dialog.ShowDialog(this);
     }
 }