add: base GUI

This commit is contained in:
Александр
2026-03-04 18:50:21 +03:00
parent c4f81b6904
commit f7550ddc75
81 changed files with 1691 additions and 16 deletions

View File

@@ -0,0 +1,17 @@
namespace UniversalTagEditor.GUI
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}
}