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/Form1.cs
Miskolczi Richárd b4a83782e9 Bro i don't even know
2023-03-24 12:18:06 +01:00

26 lines
712 B
C#

namespace Password_Manager
{
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
}
private void ChangeProfile(object sender, EventArgs e)
{
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
}
}
}