ibms-dome/z01_WinAPP/Program.cs

26 lines
651 B
C#
Raw Normal View History

2022-10-14 16:08:54 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
2023-04-11 10:28:33 +08:00
using z01_WinAPP;
2022-10-14 16:08:54 +08:00
namespace tpDomeWinAPP
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.SetHighDpiMode(HighDpiMode.SystemAware);
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
2023-09-21 15:09:47 +08:00
//Application.Run(new fmCheckTagName());
Application.Run(new fmDecrypt());
2022-10-14 16:08:54 +08:00
}
}
}