You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
596 B
C++
23 lines
596 B
C++
#pragma once
|
|
|
|
class CDlgProgress : public CDialogEx
|
|
{
|
|
DECLARE_DYNAMIC(CDlgProgress)
|
|
|
|
public:
|
|
CDlgProgress(CWnd* pParent = NULL); // 标准构造函数
|
|
virtual ~CDlgProgress();
|
|
CProgressCtrl &GetProgress(){return m_WorkProgress1;};
|
|
// 对话框数据
|
|
enum { IDD = IDD_PROGRESS_DLG };
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnTimer(UINT nIDEvent);
|
|
DECLARE_MESSAGE_MAP()
|
|
private:
|
|
CProgressCtrl m_WorkProgress1;//进度条
|
|
public:
|
|
afx_msg BOOL PreTranslateMessage(MSG* pMsg);
|
|
};
|