��������: SetItemMinWidth ��������: void ������Ϣ: UINT _ItemMinWidth ����˵��:
| 1226 | // ����˵��: |
| 1227 | //************************************ |
| 1228 | void CTreeViewUI::SetItemMinWidth( UINT _ItemMinWidth ) |
| 1229 | { |
| 1230 | m_uItemMinWidth = _ItemMinWidth; |
| 1231 | |
| 1232 | for(int nIndex = 0;nIndex < GetCount();nIndex++){ |
| 1233 | CTreeNodeUI* pTreeNode = static_cast<CTreeNodeUI*>(GetItemAt(nIndex)); |
| 1234 | if(pTreeNode) |
| 1235 | pTreeNode->SetMinWidth(GetItemMinWidth()); |
| 1236 | } |
| 1237 | Invalidate(); |
| 1238 | } |
| 1239 | |
| 1240 | //************************************ |
| 1241 | // ��������: GetItemMinWidth |
nothing calls this directly
no test coverage detected