?? progresswndthread.h
字號:
#ifndef PROGRESSWNDTHREAD_H
#define PROGRESSWNDTHREAD_H
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CRemoteAdminDoc;
class CProgressDlg;
class CProgressWndThread : public CWinThread
{
DECLARE_DYNCREATE(CProgressWndThread)
protected:
CProgressWndThread(); // protected constructor used by dynamic creation
// Attributes
public:
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CProgressWndThread)
public:
virtual BOOL InitInstance();
virtual int ExitInstance();
//}}AFX_VIRTUAL
void SetDocument(CRemoteAdminDoc* pRemoteAdminDoc);
void SetProgressText(CString strDlgProgressTxt);
// Implementation
protected:
virtual ~CProgressWndThread();
CRemoteAdminDoc* m_pRemoteAdminDoc;
// Generated message map functions
//{{AFX_MSG(CProgressWndThread)
// NOTE - the ClassWizard will add and remove member functions here.
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#endif // PROGRESSWNDTHREAD_H
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -