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

@@ -2,7 +2,6 @@ namespace Password_Manager
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
@@ -12,12 +11,7 @@ namespace Password_Manager
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
static void UpdateList(TextBox textbox, ListBox listbox)
{
}
Application.Run(new MainForm());
}
}
}