fixed all the last big bugs before going to PWA

This commit is contained in:
2023-06-01 14:30:30 +02:00
parent 3f4b82301d
commit bef8b9d635
27 changed files with 142 additions and 2979 deletions
-27
View File
@@ -1,27 +0,0 @@
# Program.cs
``` cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Test_Merge
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
```