This commit is contained in:
jl
2025-06-24 15:35:29 +08:00
parent 81ef9284b7
commit 7ed7a8cd88
33 changed files with 3955 additions and 98 deletions

View File

@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace PrintBoxFormsApp
{
internal static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new PrintList());
}
}
}