Empower/Program.cs
2025-03-27 14:13:58 +08:00

20 lines
460 B
C#

using System;
using System.Windows.Forms;
namespace Waters.Empower.InstrumentControl.Example
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FrmMain());
}
}
}