From e1ac4d0e483426d5a410b6b4ae04e819f59b621e Mon Sep 17 00:00:00 2001 From: wells.liu <wells.liu@broconcentric.com> Date: 星期五, 03 七月 2020 10:48:30 +0800 Subject: [PATCH] 基类+板卡驱动修改 --- src/Bro.UI.Device.Winform/CtrlCameraRunBase.cs | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/src/Bro.UI.Device.Winform/CtrlCameraRunBase.cs b/src/Bro.UI.Device.Winform/CtrlCameraRunBase.cs index 624da37..c990ef1 100644 --- a/src/Bro.UI.Device.Winform/CtrlCameraRunBase.cs +++ b/src/Bro.UI.Device.Winform/CtrlCameraRunBase.cs @@ -249,5 +249,17 @@ IsShowStatusBar = tsmiShowStatusBar.Checked; } #endregion + + public IOperationConfig OpConfig { get; set; } + + public void UploadOperationConfig(IOperationConfig opConfig) + { + throw new NotImplementedException(); + } + + public IOperationConfig GetOperationConfig() + { + throw new NotImplementedException(); + } } } -- Gitblit v1.8.0