
mfc
文章平均质量分 78
乾坤编程之道
这个作者很懒,什么都没留下…
展开
-
初识MFC
class CMyApp:public CWinApp{public:virtual BOOL InitInstance();};class CMainWnd:public CFrameWnd{public:CMainWnd();protected:afx_msg void OnPaint();DECLARE_MESSAGE_MAP;};CMyApp theApp;原创 2014-07-30 11:22:22 · 688 阅读 · 0 评论 -
MFC素数查找
CMyApp app;BOOL CMyApp::InitInstance(){ m_pMainWnd=new CMainWnd; m_pMainWnd->ShowWindow(m_nCmdShow); m_pMainWnd->UpdateWindow(); return true;}BEGIN_MESSAGE_MAP(CMainWnd,CFrameWnd)ON_WM_ER原创 2014-08-01 14:18:27 · 1050 阅读 · 0 评论 -
mfc橡皮筋程序
#ifndef _DRAW_H#define _DRAW_H#include class CMyApp:public CWinApp{public: BOOL InitInstance();};class CMainWnd:public CFrameWnd{public: CMainWnd();protected: DECLARE_MESSAGE_MAP(); afx原创 2014-07-31 15:58:48 · 936 阅读 · 0 评论