| | |
| | | using LB_SmartVision.Tool; |
| | | using LB_VisionProcesses.Cameras; |
| | | using LB_VisionProcesses.Communicators; |
| | | using LB_VisionProcesses.BarcodeReaders; |
| | | using System; |
| | | using System.Collections.Concurrent; |
| | | using System.Collections.Generic; |
| | |
| | | /// 相机集合(Key:相机SN,Value:相机句柄) |
| | | /// </summary> |
| | | public static ObservableConcurrentDictionary<string, BaseCamera> dicCameras { get; set; } = new ObservableConcurrentDictionary<string, BaseCamera>(); |
| | | |
| | | /// <summary> |
| | | /// 读码器集合(Key:设备SN,Value:读码器句柄) |
| | | /// </summary> |
| | | public static ObservableConcurrentDictionary<string, BarcodeReaderBase> dicBarcodeReaders { get; set; } = new ObservableConcurrentDictionary<string, BarcodeReaderBase>(); |
| | | |
| | | /// <summary> |
| | | /// 通讯集合(Key:通讯名,Value:通讯句柄) |
| | |
| | | |
| | | #endregion |
| | | |
| | | #region 读码器 |
| | | public static ConcurrentDictionary<string, string> allBarcodeReadersConnectionString = new ConcurrentDictionary<string, string>(); |
| | | public static string allBarcodeReadersConnectionStringPath |
| | | => GlobalVar.strApplicationPath + "\\所有产品\\" + GlobalVar.strProductName + "\\A_BarcodeReaderConnections.json"; |
| | | |
| | | #endregion |
| | | |
| | | #region 流程 |
| | | public static Dictionary<string, object> ControlStates { get; set; } = new Dictionary<string, object>(); |
| | | |