现在位置: 首页 > ListCtrl
2012-09-05 11:21 工业·编程 ⁄ 共 2273字 暂无评论
1、 ListCtrl添加左键单击(NM_CLICK)函数(这个很重要) 2、 ListCtrl风格设置(一般是网格) 一般listctrl默认view风格为report,一般在OnInitDialog函数中: LONG m_lStyle; m_lStyle = GetWindowLong( m_list.m_hWnd , GWL_STYLE);//获取当前窗口style m_lStyle |= LVS_EX_FULLROWSELECT;//选中某行使整行高亮(只适用与report风格的listctrl) m_lStyle |= LVS_EX_GRIDLINES;//网格线(只适用与report风格的listctrl) /...
阅读全文