#pragma once // CCreateTaskDlg 对话框 class CCreateTaskDlg : public CDialog { DECLARE_DYNAMIC(CCreateTaskDlg) public: CCreateTaskDlg(CWnd* pParent = nullptr); virtual ~CCreateTaskDlg(); // 对话框数据 #ifdef AFX_DESIGN_TIME enum { IDD = IDD_CREATETASK }; #endif protected: virtual void DoDataExchange(CDataExchange* pDX); DECLARE_MESSAGE_MAP() public: afx_msg void OnBnClickedButtonCREAT(); CString m_TaskPath; CEdit m_TaskName; CString m_TaskNames; CString m_ExePath; CString m_Author; CString m_Description; };