添加艺术字

This commit is contained in:
zsyg
2025-07-02 11:09:21 +08:00
committed by GitHub
parent 125bf6b0d4
commit e34a954777
15 changed files with 753 additions and 663 deletions

View File

@@ -1,16 +1,22 @@
using System;
using System.Windows.Forms;
namespace AppStore
{
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}
// _ _
//| | _____ _ __| |_ __ _ _ __ _ __ ____
//| |/ / _ \| '__| __/ _` | '_ \| '_ \ ____|_ /
//| | (_) | | | || (_| | |_) | |_) |_____/ /
//|_|\_\___/|_| \__\__,_| .__/| .__/ /___|
// |_| |_|
using System;
using System.Windows.Forms;
namespace AppStore
{
static class Program
{
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}