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.

30 lines
805 B
C

#pragma once
#include "MyPictrueBttom.h"
//<2F><>ʱdlg
class CDlgTimingProgress : public CDialogEx
{
DECLARE_DYNAMIC(CDlgTimingProgress)
public:
CDlgTimingProgress(CWnd* pParent = NULL); // <20><>׼<EFBFBD><D7BC><EFBFBD><EFBFBD><ECBAAF>
virtual ~CDlgTimingProgress();
virtual void OnCancel();
enum { IDD = IDD_TIMING_PROGRESS_DLG };
private:
void UpdateInfo();
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV ֧<><D6A7>
virtual BOOL OnInitDialog();
afx_msg BOOL PreTranslateMessage(MSG* pMsg);
afx_msg void OnTimer(UINT nIDEvent);
DECLARE_MESSAGE_MAP()
private:
CString m_ShowInfo;//<2F><>ʾ<EFBFBD><CABE><EFBFBD><EFBFBD>Ϣ
CProgressCtrl m_WorkProgress;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
CMyPictrueBttom m_StopBtn;
public:
afx_msg void OnBnClickedStopBtn();
};