admin
2023-12-04 1a8f39e83dd72e1a672f83e151c149d15679c3eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma once
#include <afxcmn.h>
class CMyListCtrl :
    public CListCtrl
{
    DECLARE_DYNAMIC(CMyListCtrl)
    
 public:
        CMyListCtrl();
         virtual ~CMyListCtrl();
    
             int m_nRowHeight;
    
 protected:
        DECLARE_MESSAGE_MAP()
 public:
        void SetRowHeigt(int);
        void AutoColumn(void);
};