From f83caa46dbaa42467fa92a050f9d1fa268833b2d Mon Sep 17 00:00:00 2001 From: wells.liu <wells.liu@broconcentric.com> Date: 星期一, 29 六月 2020 19:22:41 +0800 Subject: [PATCH] 点位到点位运动 修改 --- src/Bro.Common.Device/DeviceBase/PLCBase.cs | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/src/Bro.Common.Device/DeviceBase/PLCBase.cs b/src/Bro.Common.Device/DeviceBase/PLCBase.cs index 0ea73fa..c6f8d6f 100644 --- a/src/Bro.Common.Device/DeviceBase/PLCBase.cs +++ b/src/Bro.Common.Device/DeviceBase/PLCBase.cs @@ -280,6 +280,11 @@ return locations; } + + public bool MoveToPoint(IOperationConfig opConfig) + { + throw new NotImplementedException(); + } #endregion } @@ -552,7 +557,7 @@ public class PLCDeviceConverter : ComboBoxItemTypeConvert { - public override Hashtable GetConvertHash() + public override Hashtable GetConvertHash(ITypeDescriptorContext context) { Hashtable table = new Hashtable(); using (var scope = GlobalVar.Container.BeginLifetimeScope()) -- Gitblit v1.8.0