| | |
| | | { |
| | | CDialogEx::OnInitDialog(); |
| | | |
| | | DWORD dwStyle = m_listCtrl.GetExtendedStyle(); |
| | | dwStyle |= LVS_EX_FULLROWSELECT; |
| | | dwStyle |= LVS_EX_GRIDLINES; |
| | | dwStyle |= LVS_EX_DOUBLEBUFFER; |
| | | m_listCtrl.SetExtendedStyle(dwStyle); |
| | | |
| | | HIMAGELIST imageList = ImageList_Create(24, 24, ILC_COLOR24, 1, 1); |
| | | ListView_SetImageList(m_listCtrl.GetSafeHwnd(), imageList, LVSIL_SMALL); |
| | | |
| | |
| | | m_listCtrl.InsertChild(ch21, { _T("SubStep A2"), _T("Run"), _T("Bond") }); |
| | | |
| | | // 初始让顶层展开 |
| | | //root1->expanded = true; |
| | | //root2->expanded = true; |
| | | root1->expanded = true; |
| | | root2->expanded = true; |
| | | |
| | | m_listCtrl.RebuildVisible(); |
| | | |