新增 计划一个画出所有运动坐标点的软件

This commit is contained in:
zhengxuan.zhang
2022-12-05 10:23:02 +08:00
parent d652f671db
commit ba0eb21beb
26 changed files with 2536 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
namespace EF3
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}
}