This repository has been archived on 2025-09-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Password-Manager-Legacy/Password Manager/Profiles/ProfileHandler.cs
Miskolczi Richárd 01a926d316 asd
2023-03-24 14:09:46 +01:00

18 lines
459 B
C#

using System;
namespace Password_Manager
{
static class ProfileHandler
{
public static Profile CurrentProfile;
public static ProfileList ListOfProfiles;
public static void ProfileChange(object sender, EventArgs e)
{
Program.mainForm.searchBox.Clear();
Program.mainForm.resultList.ReloadResults();
Program.mainForm.profileSelection.DataSource = ListOfProfiles;
}
}
}