Ejemplo n.º 1
0
        private void LoadSSHKey_Click(object sender, EventArgs e)
        {
            var pathLoaded = BrowseForPrivateKey.BrowseAndLoad(this);

            if (!string.IsNullOrEmpty(pathLoaded))
            {
                KeyPath      = pathLoaded;
                DialogResult = DialogResult.Retry;
                Close();
            }
        }
Ejemplo n.º 2
0
 private void LoadSshKeyClick(object sender, EventArgs e)
 {
     BrowseForPrivateKey.BrowseAndLoad(this);
 }