25 lines
555 B
C#
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();
|
|
}
|
|
}
|
|
}
|