using LB_VisionControl;
|
using OpenCvSharp.Flann;
|
using System;
|
using System.Collections.Concurrent;
|
using System.Windows.Forms;
|
using System.Xml.Linq;
|
|
namespace LB_SmartVision.Forms.Pages.MotionControlPage
|
{
|
public partial class MotionControlEditPage : UserControl
|
{
|
public Action<string, LogInfoType> LogInfo;
|
|
|
public MotionControlEditPage()
|
{
|
InitializeComponent();
|
|
Name = "MotionControlEditPage";
|
Text = "运动控制设置";
|
}
|
|
private void MESEditPage_Paint(object sender, PaintEventArgs e)
|
{
|
uiFlowLayoutPanel1.Controls.Clear();
|
}
|
|
|
}
|
}
|