Add files via upload

初始化
This commit is contained in:
zsyg
2025-06-13 11:10:16 +08:00
committed by GitHub
parent 25172409bb
commit fbaa9e0515
10 changed files with 684 additions and 0 deletions

16
Program.cs Normal file
View File

@@ -0,0 +1,16 @@
using System;
using System.Windows.Forms;
namespace AppStore
{
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}