zoukankan      html  css  js  c++  java
  • CListCtrl 隔行变色

    响应消息

    ON_NOTIFY(NM_CUSTOMDRAW, ListCtrl的ID, OnNMCustomdrawList)

    实现函数OnNMCustomdrawList

    void CFinishWellToFind::OnNMCustomdrawList(NMHDR *pNMHDR, LRESULT *pResult)
    {

     NMLVCUSTOMDRAW* pLVCD = reinterpret_cast<NMLVCUSTOMDRAW*>( pNMHDR );
     *pResult = CDRF_DODEFAULT;

     if ( CDDS_PREPAINT == pLVCD->nmcd.dwDrawStage )
     {
      *pResult = CDRF_NOTIFYITEMDRAW;
     }
     else if ( CDDS_ITEMPREPAINT == pLVCD->nmcd.dwDrawStage )
     {
      *pResult = CDRF_NOTIFYSUBITEMDRAW;
     }
     else if ( (CDDS_ITEMPREPAINT | CDDS_SUBITEM) == pLVCD->nmcd.dwDrawStage )
     {

      COLORREF clrNewTextColor, clrNewBkColor;

      int nItem = static_cast<int>( pLVCD->nmcd.dwItemSpec );

      POSITION pos = m_ListCtrl.GetFirstSelectedItemPosition();
      int index = m_ListCtrl.GetNextSelectedItem(pos);

      if (index == nItem)//如果要刷新的项为当前选择的项,则将文字设为白色,背景色设为蓝色
      {
       clrNewTextColor = RGB(255,255,255);        //Set the text to white
       clrNewBkColor = RGB(49,106,197);        //Set the background color to blue
      }
      else if (nItem % 2) //奇偶行隔行变色
      {
       clrNewTextColor = RGB(0,0,0);        //set the text black
       clrNewBkColor = RGB(200,200,220);    //leave the background color white
      }
      else
      {
       clrNewTextColor = RGB(0,0,0);        //set the text black
       clrNewBkColor = RGB(255,255,255);    //leave the background color white
      }

      pLVCD->clrText = clrNewTextColor;
      pLVCD->clrTextBk = clrNewBkColor;

      *pResult = CDRF_DODEFAULT;
     }

    }

  • 相关阅读:
    c++ 图解快速排序算法
    Shell脚本检测文件夹是否已被挂载的方法
    Linux使用mount挂载samba共享
    PHP使用字符串名称调用类的方法
    命令行查看端口号被进程占用
    Golang Clearing slice
    送给自己的程序员箴言
    Entity Framework6 with Visual Studio 2013 update3 for Oracle 11g
    深入浅出ASP.NET MVC5系列之一
    年终福利:调试.NET Framework源代码
  • 原文地址:https://www.cnblogs.com/ye-ming/p/9262802.html
Copyright © 2011-2022 走看看