Files
SimpleRemoter/server/2015Remote/sys/CCreateTaskDlg.h

32 lines
586 B
C
Raw Normal View History

#pragma once
2025-06-08 15:38:41 +08:00
// CCreateTaskDlg 对话框
2025-06-08 15:38:41 +08:00
class CCreateTaskDlg : public CDialog
{
DECLARE_DYNAMIC(CCreateTaskDlg)
public:
CCreateTaskDlg(CWnd* pParent = nullptr);
virtual ~CCreateTaskDlg();
// 对话框数据
2025-06-08 15:38:41 +08:00
#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;
};