DHDHSoftware/DHSoftware/Views/DetectConfigControl.cs
2025-03-16 13:14:05 +08:00

25 lines
555 B
C#

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;
using DH.Devices.Vision;
namespace DHSoftware.Views
{
public partial class DetectConfigControl : UserControl
{
private DetectionConfig _currentConfig = new DetectionConfig();
private readonly string _configName;
public DetectConfigControl()
{
InitializeComponent();
}
}
}