tijian_tieying/winform/photo/Program.cs

30 lines
651 B
C#
Raw Permalink Normal View History

2025-02-20 12:01:17 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace photo
{
internal static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
try
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Photo_Form2());
}
catch (Exception e)
{
throw e;
}
}
}
}