Files
VisionEdit/CommonMethods/Interface/ToolRun.cs
liu.wenjie 9dcba19b67 1、增加单独Job的保存、添加和创建
2、每个Job单独绑定一个图像窗体
3、支持通过以job的方式外部调用
2022-05-09 16:17:41 +08:00

28 lines
663 B
C#

/*
* ==============================================================================
*
* Filename: ToolRun
* Description:
*
* Version: 1.0
* Created: 2021/2/25 15:27:56
*
* Author: liu.wenjie
*
* ==============================================================================
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace CommonMethods.Interface
{
public interface IToolRun
{
void ToolRun(string jobName, int toolIndex, int inputItemNum, TreeNode selectNode, List<IToolInfo> L_toolList, IVisionJob runJob, Form myHalconWindow);
}
}