ListControl 设置表格行高与字体

设置行高:
CImageList   m_l; 
m_l.Create(1,18,TRUE|ILC_COLOR32,1,0);   
listCtrl.SetImageList(&m_l,LVSIL_SMALL); 

设置字体:
CFont m_font;
m_font.CreatePointFont(50, "新宋体");
m_listCtrl.SetFont(&m_font);

猜你喜欢

转载自www.cnblogs.com/qingtian224/p/9248484.html
今日推荐