MonitorCategoryWnd.cpp
资源名称:GGBT.rar [点击查看]
上传用户:lds876
上传日期:2013-05-25
资源大小:567k
文件大小:1k
源码类别:
P2P编程
开发平台:
Visual C++
- // MonitorCategoryWnd.cpp : implementation file
- //
- #include "stdafx.h"
- #include "testbt.h"
- #include "MonitorCategoryWnd.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CMonitorCategoryWnd
- CMonitorCategoryWnd::CMonitorCategoryWnd()
- {
- }
- CMonitorCategoryWnd::~CMonitorCategoryWnd()
- {
- }
- BEGIN_MESSAGE_MAP(CMonitorCategoryWnd, CTreeCtrlEx)
- //{{AFX_MSG_MAP(CMonitorCategoryWnd)
- ON_WM_DELETEITEM()
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CMonitorCategoryWnd message handlers
- BOOL CMonitorCategoryWnd::CreateEx(CWnd *pParent, CRect &rc, long lParam)
- {
- return Create(WS_CHILD|WS_VISIBLE|WS_BORDER, rc, pParent, 32565);
- }
- void CMonitorCategoryWnd::OnDeleteItem(int nIDCtl, LPDELETEITEMSTRUCT lpDeleteItemStruct)
- {
- CTreeCtrlEx::OnDeleteItem(nIDCtl, lpDeleteItemStruct);
- }