MonitorCategoryWnd.cpp
上传用户:lds876
上传日期:2013-05-25
资源大小:567k
文件大小:1k
源码类别:

P2P编程

开发平台:

Visual C++

  1. // MonitorCategoryWnd.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "testbt.h"
  5. #include "MonitorCategoryWnd.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CMonitorCategoryWnd
  13. CMonitorCategoryWnd::CMonitorCategoryWnd()
  14. {
  15. }
  16. CMonitorCategoryWnd::~CMonitorCategoryWnd()
  17. {
  18. }
  19. BEGIN_MESSAGE_MAP(CMonitorCategoryWnd, CTreeCtrlEx)
  20. //{{AFX_MSG_MAP(CMonitorCategoryWnd)
  21. ON_WM_DELETEITEM()
  22. //}}AFX_MSG_MAP
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CMonitorCategoryWnd message handlers
  26. BOOL CMonitorCategoryWnd::CreateEx(CWnd *pParent, CRect &rc, long lParam)
  27. {
  28. return Create(WS_CHILD|WS_VISIBLE|WS_BORDER, rc, pParent, 32565);
  29. }
  30. void CMonitorCategoryWnd::OnDeleteItem(int nIDCtl, LPDELETEITEMSTRUCT lpDeleteItemStruct) 
  31. {
  32. CTreeCtrlEx::OnDeleteItem(nIDCtl, lpDeleteItemStruct);
  33. }