如何让List Control中的单元格具有边框?

时间:2012-10-05 08:52:30

标签: c++ mfc

我需要得到这样的东西: enter image description here

但我现在一直在寻找解决方案2小时。

1 个答案:

答案 0 :(得分:4)

这些线条只是另一种设置样式:

DWORD dwStyle = m_list.GetExtendedStyle();
dwStyle |= LVS_EX_GRIDLINES;
m_list.SetExtendedStyle(dwStyle);