39 lines
1.1 KiB
C#
39 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
using 全自动水压检测仪;
|
|
using 全自动水压检测仪.DATA;
|
|
|
|
namespace 全自动水压检测仪
|
|
{
|
|
internal static class Program
|
|
{
|
|
|
|
/// <summary>
|
|
/// 应用程序的主入口点。
|
|
/// </summary>
|
|
[STAThread]
|
|
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
|
|
//Coeffiicientsetting coeffiicientsetting = new Coeffiicientsetting();
|
|
//HighTemperatureMode highTemperatureMode = new HighTemperatureMode();
|
|
//NormalTemperatureMode normalTemperatureMode = new NormalTemperatureMode();
|
|
|
|
//FormManager.Instance
|
|
// .RegisterForm(coeffiicientsetting)
|
|
// .RegisterForm(highTemperatureMode)
|
|
// .RegisterForm(normalTemperatureMode);
|
|
|
|
|
|
//Application.Run(normalTemperatureMode);
|
|
Application.Run(new ScanImport());
|
|
}
|
|
}
|
|
}
|