按键盘上方向键 ← 或 → 可快速上下翻页,按键盘上的 Enter 键可回到本书目录页,按键盘上方向键 ↑ 可回到本页顶部!
————未阅读完?加入书签已便下次继续阅读!
#0033 return 1;
#0034 }
#0035 };
#0036
#0037 class CWnd;
#0038
#0039 class CWinApp : public CWinThread
#0040 {
#0041 public:
118
…………………………………………………………Page 181……………………………………………………………
第3章 MFC 六大關鍵技術之模擬
#0042 CWinApp* m_pCurrentWinApp;
#0043 CWnd* m_pMainWnd;
#0044
#0045 public:
#0046 CWinApp::CWinApp() { m_pCurrentWinApp = this; }
#0047 CWinApp::~CWinApp() { }
#0048
#0049 virtual BOOL InitApplication() {
#0050 cout