2013年8月7日

CView::OnPreparePrinting

摘要: http://technet.microsoft.com/zh-cn/subscriptions/a59dff1e(v=vs.71).aspxCView::OnPreparePrintingCalled by the framework before a document is printed or previewed.virtual BOOL OnPreparePrinting( CPrintInfo* pInfo );ParameterspInfoPoints to a CPrintInfo structure that describes the current print job... 阅读全文

posted @ 2013-08-07 23:20 song2013 阅读(482) 评论(0) 推荐(0) 编辑

MFC单文档程序架构解析

摘要: MFC单文档程序架构解析MFC单文档程序架构解析 这里我以科院杨老师的单文档程序来分析一下MFC单文档的程序架构,纯属个人见解,不当之处烦请指教!首先我们了解到的是 图(一)theApp 是唯一一个在程序形成的时候就存在的全局变量,它属于CstockAppApp类,而CstockAppApp 继承于CwinApp类,我们看一下MSDN中CwinApp的继承关系如下: 图(二)从继承关系当中,我们发现theApp是作为程序的实体而存在的,是单文档程序的核心。首先分析一下的是CsockAppApp这个类,这里面有一个重要的函数BOOL CStockAppApp::InitInstance()这.. 阅读全文

posted @ 2013-08-07 23:13 song2013 阅读(330) 评论(0) 推荐(0) 编辑

导航