This commit is contained in:
2023-03-28 08:22:08 +02:00
parent 35db2e56d4
commit f08b2e91c8
5 changed files with 62 additions and 12 deletions

View File

@@ -26,6 +26,11 @@ namespace Password_Manager
gp.ShowDialog();
}
private void CancelPressed(object sender, EventArgs e)
{
Close();
}
private void Decrypt(object sender, EventArgs e)
{
string fileName = ResultList.Text;
@@ -55,6 +60,8 @@ namespace Password_Manager
{
MessageBox.Show(ex.ToString(), "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
Close();
}
}
}