2025-11-20 14:23:05 +08:00
|
|
|
using System;
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
2025-11-20 11:10:53 +08:00
|
|
|
namespace WinFormsApp1
|
|
|
|
|
{
|
|
|
|
|
internal static class Program
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The main entry point for the application.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[STAThread]
|
|
|
|
|
static void Main()
|
|
|
|
|
{
|
2025-11-20 14:23:05 +08:00
|
|
|
Application.EnableVisualStyles();
|
|
|
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
2025-11-20 11:10:53 +08:00
|
|
|
Application.Run(new Form1());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|