23 lines
498 B
C#
23 lines
498 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 UpdateResultList(object sender, EventArgs args)
|
|
{
|
|
//TODO:
|
|
}
|
|
}
|
|
} |