ListCtrlEx.h
上传用户:sunnie
上传日期:2022-07-13
资源大小:4512k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. #pragma once
  2. #include "ThirdDefine.h"
  3. #include <vector>
  4. using namespace std;
  5. #define IDC_LIST_CTRL WM_USER
  6. // CListCtrlEx
  7. class CListCtrlEx : public CListCtrl
  8. {
  9. DECLARE_DYNAMIC(CListCtrlEx)
  10. public:
  11. CListCtrlEx();
  12. virtual ~CListCtrlEx();
  13. void InsertItemEx(const int nItem, int nCmdShow);
  14. void ReleaseAll();
  15. void MovePosition();
  16. void SetBarPosition(const int nPos);
  17. void SetChkBox();
  18. void SetEdtBox();
  19. private:
  20. vector<CListCtrlRow*> m_vecListRow;
  21. protected:
  22. DECLARE_MESSAGE_MAP()
  23. };