ex43.h
资源名称:VC6.0.rar [点击查看]
上传用户:qdhmjx
上传日期:2022-07-11
资源大小:2226k
文件大小:0k
源码类别:
书籍源码
开发平台:
Visual C++
- #include <afxwin.h>
- class CMyApp:public CWinApp
- {
- public:
- virtual BOOL InitInstance();
- };
- class CMainWnd:public CFrameWnd
- {
- protected:
- afx_msg void OnLButtonDown(UINT nFlags,CPoint point);
- //鼠标左键单击的缺省处理函数原型(定义部分写在chen.cpp文件中)
- afx_msg void OnRButtonDown(UINT nFlags,CPoint point);
- //鼠标右键单击的缺省处理函数原型(定义部分写在chen.cpp文件中)
- DECLARE_MESSAGE_MAP();
- };