bro check it out

This commit is contained in:
Miskolczi Richárd
2023-03-24 12:39:50 +01:00
parent b4a83782e9
commit bb7625d2f8
6 changed files with 36 additions and 19 deletions

View File

@@ -20,7 +20,20 @@ namespace Password_Manager
private void UpdateResultList(object sender, EventArgs args)
{
//TODO
resultList.Refresh();
}
private void ProfileChange(object sender, EventArgs e)
{
searchBox.Clear();
resultList.Refresh();
}
private void AddProfile(object sender, EventArgs e)
{
Fields.ListOfProfiles.Add(new Profile("tmp", @"C:\Users\RichardMiskolczi\pass"));
Fields.CurrentProfile = Fields.ListOfProfiles[0]; //temporary
ProfileChange(sender, e);
}
}
}