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/ProfileHandler.cs
2023-03-24 14:03:09 +01:00

17 lines
384 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();
}
}
}