New dialog for adding profiles

This commit is contained in:
Miskolczi Richárd
2023-03-24 13:01:49 +01:00
parent bc08238545
commit b06568fb27
9 changed files with 201 additions and 4 deletions

View File

@@ -0,0 +1,38 @@
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)
{
resultList.Refresh();
}
private void ProfileChange(object sender, EventArgs e)
{
searchBox.Clear();
resultList.Refresh();
}
private void AddProfile(object sender, EventArgs e)
{
NewProfileForm npf = new NewProfileForm();
npf.Show();
}
}
}