Files
Z714System/外科辅料和患者防护罩激光抗性测试仪/BasicDemo/Program.cs
2026-01-05 14:08:48 +08:00

22 lines
480 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace BasicDemo
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}