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