SmsManager/DLG_WxWorkSetup.h
2025-01-14 10:46:18 +08:00

40 lines
1.4 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
// DLG_WxWorkSetup 对话框
class DLG_WxWorkSetup : public CDialogEx
{
DECLARE_DYNAMIC(DLG_WxWorkSetup)
public:
void SetSetup(REQ_WxWork_Setup setup);
REQ_WxWork_Setup GetSetup();
public:
DLG_WxWorkSetup(CWnd* pParent = nullptr); // 标准构造函数
virtual ~DLG_WxWorkSetup();
// 对话框数据
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_WXWORKSETUP };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedOk();
virtual BOOL OnInitDialog();
public:
BOOL m_bCheckUp;
BOOL m_bSend;
UINT m_lTimer;
UINT m_lAutoEnd;
CString m_strUser;
CString m_strSetTime;
REQ_WxWork_Setup m_Setup;
};