DHDHSoftware/DHSoftware/Views/DetectConfigControl.cs

25 lines
555 B
C#
Raw Normal View History

2025-03-13 18:54:05 +08:00
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;
2025-03-16 13:14:05 +08:00
using DH.Devices.Vision;
2025-03-13 18:54:05 +08:00
namespace DHSoftware.Views
{
public partial class DetectConfigControl : UserControl
{
2025-03-16 13:14:05 +08:00
private DetectionConfig _currentConfig = new DetectionConfig();
private readonly string _configName;
2025-03-13 18:54:05 +08:00
public DetectConfigControl()
{
InitializeComponent();
}
}
}