Bro i don't even know

This commit is contained in:
Miskolczi Richárd
2023-03-24 12:18:06 +01:00
parent 91c6f339ba
commit b4a83782e9
7 changed files with 49 additions and 35 deletions

View File

@@ -11,13 +11,16 @@ namespace Password_Manager
{
ComboBox cb = (ComboBox)sender;
Fields.CurrentProfile = Fields.ListOfProfiles.SearchByName(cb.Text);
}
private void ClearSearchBox(object sender, EventArgs e) //needed because declaring an anonymous method and subscribing that onto the delegate didn't work for some reason
{
searchBox.Clear();
}
private void UpdateResultList(object sender, EventArgs args)
{
//TODO:
//TODO
}
}
}