标准的ListControl不行,用自画风格重载DrawItem或者去找现成的类库吧。

解决方案 »

  1.   

    CListCtrl::SetHotItem
    int SetHotItem( int iIndex );Return ValueThe zero-based index of the previously hot item.ParametersiIndexZero-based index of the item to be set as the hot item.ResThis member function implements the behavior of the Win32 macro,ListView_SetHotItem, as described in the Platform SDK.CListCtrl Overview |  Class Members |  Hierarchy Chart
      

  2.   

    SetHotItem( int iIndex );无法对多行进行标注,我要是想对多行标注怎么实现呢???
      

  3.   

    Custom Draw
    在MSDN中搜索NM_CUSTOMDRAW可以找到示例。