From b31770cfb61272f0bcf148198d1b95ef445fe079 Mon Sep 17 00:00:00 2001 From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com> Date: 星期四, 21 八月 2025 10:56:53 +0800 Subject: [PATCH] 1.完善可折叠ListCtrl; 2.l加载Job时,根据ProcessID设置ControlJob的PJ列表 3.ControlJob对话框完善; --- 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