深入浅出MFC第2版(PDF格式)-第33部分
按键盘上方向键 ← 或 → 可快速上下翻页,按键盘上的 Enter 键可回到本书目录页,按键盘上方向键 ↑ 可回到本页顶部!
————未阅读完?加入书签已便下次继续阅读!
#0084 {
#0085 public:
#0086 CFrameWnd::CFrameWnd() { }
#0087 CFrameWnd::~CFrameWnd() { }
119
…………………………………………………………Page 182……………………………………………………………
第篇 勿在浮砂築高台
#0088 BOOL Create();
#0089 virtual BOOL PreCreateWindow();
#0090 };
#0091
#0092 class CView : public CWnd
#0093 {
#0094 public:
#0095 CView::CView() { }
#0096 CView::~CView() { }
#0097 };
#0098
#0099
#0100 // global function
#0101 CWinApp* AfxGetApp();
MFC。CPP
#0001 #include 〃my。h〃 // 原该包含mfc。h 就好,但为了CMyWinApp 的定义,所以。。。
#0002
#0003 extern CMyWinApp theApp; // external global object
#0004
#0005 BOOL CWnd::Create()
#0006 {
#0007 cout