GuiListCtrl.cpp
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:1k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // GuiListCtrl.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "GuiLib.h"
  5. #include "GuiListCtrl.h"
  6. // CGuiListCtrl
  7. IMPLEMENT_DYNAMIC(CGuiListCtrl, CListCtrl)
  8. CGuiListCtrl::CGuiListCtrl()
  9. {
  10. }
  11. CGuiListCtrl::~CGuiListCtrl()
  12. {
  13. }
  14. BEGIN_MESSAGE_MAP(CGuiListCtrl, CListCtrl)
  15. ON_WM_DRAWITEM()
  16. END_MESSAGE_MAP()
  17. // CGuiListCtrl message handlers
  18. void CGuiListCtrl::OnDrawItem(int nIDCtl, LPDRAWITEMSTRUCT lpDrawItemStruct)
  19. {
  20. // TODO: Add your message handler code here and/or call default
  21. CListCtrl::OnDrawItem(nIDCtl, lpDrawItemStruct);
  22. }