ex43.h
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <afxwin.h>
  2. class CMyApp:public CWinApp
  3. {
  4. public:
  5. virtual BOOL InitInstance();
  6. };
  7. class CMainWnd:public CFrameWnd
  8. {
  9. protected:
  10. afx_msg void OnLButtonDown(UINT nFlags,CPoint point);
  11. //鼠标左键单击的缺省处理函数原型(定义部分写在chen.cpp文件中)
  12. afx_msg void OnRButtonDown(UINT nFlags,CPoint point);
  13. //鼠标右键单击的缺省处理函数原型(定义部分写在chen.cpp文件中)
  14. DECLARE_MESSAGE_MAP();
  15. };