MySp.cpp
上传用户:wangdan
上传日期:2022-06-30
资源大小:739k
文件大小:1k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. // MySp.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Test1.h"
  5. #include "MySp.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // MySp
  13. MySp::MySp()
  14. {
  15. }
  16. MySp::~MySp()
  17. {
  18. }
  19. BEGIN_MESSAGE_MAP(MySp, CSplitterWnd)
  20. //{{AFX_MSG_MAP(MySp)
  21. ON_WM_LBUTTONDOWN()
  22. ON_WM_MOUSEMOVE()
  23. //}}AFX_MSG_MAP
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // MySp message handlers
  27. void MySp::OnLButtonDown(UINT nFlags, CPoint point) 
  28. {
  29. // TODO: Add your message handler code here and/or call default
  30. return;
  31. CSplitterWnd::OnLButtonDown(nFlags, point);
  32. }
  33. void MySp::OnMouseMove(UINT nFlags, CPoint point) 
  34. {
  35. return;
  36. CSplitterWnd::OnMouseMove(nFlags, point);
  37. }