BaoKai_202508-Wms-Jingwang..../ShapeControl_CodeProject/TestShapeControl/Program.cs

25 lines
559 B
C#
Raw Permalink Normal View History

2025-08-24 09:35:55 +08:00
 using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace TestShapeControl
{
static public class Program
{
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Form1 f2 = new Form1();
//MultiCamForm f1 = new MultiCamForm();
Application.Run(f2);
}
}
}