Adding Profile and ProfileList class

This commit is contained in:
Miskolczi Richárd
2023-03-24 11:14:49 +01:00
parent ef93530830
commit 911b3fc819
7 changed files with 109 additions and 30 deletions

View File

@@ -1,10 +1,20 @@
namespace Password_Manager
{
public partial class Form1 : Form
public partial class MainForm : Form
{
public Form1()
public MainForm()
{
InitializeComponent();
}
private void ChangeProfile(object sender, EventArgs e)
{
}
private void UpdateResultList(object sender, EventArgs args)
{
}
}
}