Yao Chunli
2022-05-28 eea0893be9d4ef175ab26e8fea51d41fa33477ce
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#pragma once
 
 
// CDialogProgress 对话框
 
class CDialogProgress : public CDialogEx
{
    DECLARE_DYNAMIC(CDialogProgress)
 
public:
    CDialogProgress(CWnd* pParent = nullptr);   // 标准构造函数
    virtual ~CDialogProgress();
 
// 对话框数据
#ifdef AFX_DESIGN_TIME
    enum { IDD = IDD_DIALOG_PROGRESS };
#endif
 
protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
 
    DECLARE_MESSAGE_MAP()
public:
 
    virtual BOOL OnInitDialog();
    afx_msg void OnTimer(UINT_PTR nIDEvent);
    CProgressCtrl m_progress1;
    bool m_bAutoPos = false;
    int m_nPreogress = 0 ;
    CString m_TitleStr = _T("进度条标题栏");
    CString m_HintStr = _T("进度条提示栏");
 
    int SetPos(int nPos);
    int SetTitle(CString sTitleStr);
    int SetHintStr(CString sHintStr);
};