25111106 正压压28出货版本

This commit is contained in:
moxiliang
2025-11-14 09:41:37 +08:00
parent dcd9b20fb0
commit c5a60cc54c
477 changed files with 96521 additions and 647622 deletions

19
SLC1-N/Program.cs Normal file
View File

@@ -0,0 +1,19 @@
using System;
using System.Windows.Forms;
namespace SLC1_N
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}