添加项目文件。

This commit is contained in:
2026-03-23 15:10:13 +08:00
parent cd1b289b66
commit 774dc16ff6
14 changed files with 2433 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace HkVisionPro.App
{
public partial class MainForm : Form
{
public MainForm()
{
InitializeComponent();
}
private void btnSelctedSolution_Click(object sender, EventArgs e)
{
}
private void btnLoadSolution_Click(object sender, EventArgs e)
{
}
private void btnExecutSolution_Click(object sender, EventArgs e)
{
}
private void btnSaveSolution_Click(object sender, EventArgs e)
{
}
}
}