#pragma once #include "CCjPageBase.h" #include "ProcessJob.h" // CPjPage1 对话框 class CCjPage2 : public CCjPageBase { DECLARE_DYNAMIC(CCjPage2) public: CCjPage2(CWnd* pParent = nullptr); // 标准构造函数 virtual ~CCjPage2(); protected: void Resize(); virtual void OnApply(); virtual void OnSetContext(void* pContext); private: void UpdatePjData(); // 对话框数据 #ifdef AFX_DESIGN_TIME enum { IDD = IDD_CJ_PAGE1 }; #endif protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持 DECLARE_MESSAGE_MAP() public: virtual BOOL OnInitDialog(); afx_msg void OnDestroy(); afx_msg void OnEnChangeEditPjId(); afx_msg void OnCbnSelchangeComboRecipe(); };