123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #include "stdafx.h"
- #include "ylgl.h"
- #include "MySplitterWnd.h"
- #ifdef _DEBUG
- #undef THIS_FILE
- static char THIS_FILE[]=__FILE__;
- #define new DEBUG_NEW
- #endif
- MySplitterWnd::MySplitterWnd()
- {
- }
- MySplitterWnd::~MySplitterWnd()
- {
- }
- IMPLEMENT_DYNCREATE(MySplitterWnd, CSplitterWnd)
- BEGIN_MESSAGE_MAP(MySplitterWnd, CSplitterWnd)
-
- ON_WM_MOUSEMOVE()
- ON_WM_LBUTTONDOWN()
-
- END_MESSAGE_MAP()
- void MySplitterWnd::OnMouseMove(UINT nFlags, CPoint point)
- {
-
- }
- void MySplitterWnd::OnLButtonDown(UINT nFlags, CPoint point)
- {
-
- }
|