minor edits

This commit is contained in:
Dimitar Byalkov
2023-06-09 05:39:06 +02:00
parent d81450ed21
commit f90e73d544
9 changed files with 88 additions and 30 deletions

View File

@@ -236,5 +236,13 @@ namespace WinForms
RefreshLists();
}
}
private void btnLogout_Click(object sender, EventArgs e)
{
if (MessageBox.Show("Do you want to log out?", "Log out", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
Close();
}
}
}
}