23 lines
513 B
C#
Raw Permalink Normal View History

2026-01-21 09:50:58 +08:00
using System;
using System.Windows.Forms;
using log4net.Config;
2026-01-21 19:31:27 +08:00
using YiDa_WinForm;
2026-01-21 09:50:58 +08:00
namespace MQTT_WinformV1
{
internal static class Program
{
/// <summary>
2026-01-21 19:31:27 +08:00
/// 应用程序的主入口点
2026-01-21 09:50:58 +08:00
/// </summary>
[STAThread]
static void Main()
{
XmlConfigurator.Configure();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
2026-01-21 19:31:27 +08:00
Application.Run(new MainForm());
2026-01-21 09:50:58 +08:00
}
}
}