1
0
mirror of synced 2025-12-19 11:38:02 +08:00

auto commit

This commit is contained in:
yitter
2021-04-01 02:38:11 +08:00
parent 43417f41cc
commit 0566c98e3e
48 changed files with 1294 additions and 109 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WInFormApp
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new StartForm());
}
}
}