ListCtrlEx.h
上传用户:sunnie
上传日期:2022-07-13
资源大小:4512k
文件大小:1k
- #pragma once
- #include "ThirdDefine.h"
- #include <vector>
- using namespace std;
- #define IDC_LIST_CTRL WM_USER
- // CListCtrlEx
- class CListCtrlEx : public CListCtrl
- {
- DECLARE_DYNAMIC(CListCtrlEx)
- public:
- CListCtrlEx();
- virtual ~CListCtrlEx();
- void InsertItemEx(const int nItem, int nCmdShow);
- void ReleaseAll();
- void MovePosition();
- void SetBarPosition(const int nPos);
- void SetChkBox();
- void SetEdtBox();
-
- private:
- vector<CListCtrlRow*> m_vecListRow;
- protected:
- DECLARE_MESSAGE_MAP()
- };