From 6b80da0fe2a6053b39802a6701db6df0ab1fde24 Mon Sep 17 00:00:00 2001 From: mrDarker <mr.darker@163.com> Date: 星期五, 05 九月 2025 17:27:35 +0800 Subject: [PATCH] 1. 添加设备配方参数显示界面 --- SourceCode/Bond/Servo/CControlJobDlg.h | 15 +++++++++++++++ 1 files changed, 15 insertions(+), 0 deletions(-) diff --git a/SourceCode/Bond/Servo/CControlJobDlg.h b/SourceCode/Bond/Servo/CControlJobDlg.h index 83763f0..410f3ec 100644 --- a/SourceCode/Bond/Servo/CControlJobDlg.h +++ b/SourceCode/Bond/Servo/CControlJobDlg.h @@ -1,5 +1,6 @@ 锘�#pragma once #include "CExpandableListCtrl.h" +#include "CControlJob.h" // CControlJobDlg 瀵硅瘽妗� @@ -11,6 +12,19 @@ public: CControlJobDlg(CWnd* pParent = nullptr); // 鏍囧噯鏋勯�犲嚱鏁� virtual ~CControlJobDlg(); + +public: + void SetControlJob(SERVO::CControlJob* pControlJob); + +private: + void Resize(); + void ShowGroup1(BOOL bShow); + void ShowGroup2(BOOL bShow); + void LoadData(); + +private: + SERVO::CControlJob* m_pControlJob; + CFont m_fontNoJob; protected: CExpandableListCtrl m_listCtrl; @@ -27,4 +41,5 @@ DECLARE_MESSAGE_MAP() public: virtual BOOL OnInitDialog(); + afx_msg void OnSize(UINT nType, int cx, int cy); }; -- Gitblit v1.9.3