DeviceManager/Test/Program.cs

20 lines
420 B
C#
Raw Normal View History

2024-05-28 14:36:38 +00:00
using System;
using System.Windows.Forms;
namespace Test
{
internal static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}