MySp.cpp
上传用户:wangdan
上传日期:2022-06-30
资源大小:739k
文件大小:1k
- // MySp.cpp : implementation file
- //
- #include "stdafx.h"
- #include "Test1.h"
- #include "MySp.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // MySp
- MySp::MySp()
- {
- }
- MySp::~MySp()
- {
- }
- BEGIN_MESSAGE_MAP(MySp, CSplitterWnd)
- //{{AFX_MSG_MAP(MySp)
- ON_WM_LBUTTONDOWN()
- ON_WM_MOUSEMOVE()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // MySp message handlers
- void MySp::OnLButtonDown(UINT nFlags, CPoint point)
- {
- // TODO: Add your message handler code here and/or call default
- return;
- CSplitterWnd::OnLButtonDown(nFlags, point);
- }
- void MySp::OnMouseMove(UINT nFlags, CPoint point)
- {
- return;
- CSplitterWnd::OnMouseMove(nFlags, point);
- }