/// <summary> /// Manage HTTPS Passwords /// </summary> private void MenuMainManageHttpsClick(object sender, EventArgs e) { FormHttps formHttps = new FormHttps(); formHttps.ShowDialog(); }
/// <summary> /// User clicked on the HTTPS authentication button, open a dialog to enter HTTPS credentials /// </summary> private void BtHttpsClicked(object sender, EventArgs e) { FormHttps formHttps = new FormHttps(); formHttps.ShowDialog(); }