private void ChangePasswordOpener_Click(object sender, EventArgs e) { LogoutPanel.SendToBack(); LogoutPanel.Visible = false; ChangePasswordPanel.BringToFront(); ChangePasswordPanel.Visible = true; }
private void CancellogoutButton_Click(object sender, EventArgs e) { LogoutPanel.SendToBack(); ChangePasswordPanel.SendToBack(); LogoutPanel.Visible = false; }