简单的自绘CListBox(多行显示)(覆盖DrawItem函数,然后用CDC绘制)

时间:2024-06-24 17:06:02

之前写过一个自绘的CListBox类,详细请参考http://blog.****.net/VisualEleven/archive/2010/10/12/5935430.aspx
现在修改这之前的代码,使该CListBox能够支持多行显示的问题。

  1. // 重写DrawItem虚函数
  2. void CNewListBox::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct)
  3. {
  4. // TODO: Add your code to draw the specified item
  5. ASSERT(lpDrawItemStruct->CtlType == ODT_LISTBOX);
  6. LPCTSTR lpszText = (LPCTSTR) lpDrawItemStruct->itemData;
  7. ASSERT(lpszText != NULL);
  8. CDC dc;
  9. dc.Attach(lpDrawItemStruct->hDC);
  10. // Save these value to restore them when done drawing.
  11. COLORREF crOldTextColor = dc.GetTextColor();
  12. COLORREF crOldBkColor = dc.GetBkColor();
  13. // If this item is selected, set the background color
  14. // and the text color to appropriate values. Also, erase
  15. // rect by filling it with the background color.
  16. if ((lpDrawItemStruct->itemAction | ODA_SELECT) &&
  17. (lpDrawItemStruct->itemState & ODS_SELECTED))
  18. {
  19. dc.SetTextColor(::GetSysColor(COLOR_HIGHLIGHTTEXT));
  20. dc.SetBkColor(::GetSysColor(COLOR_HIGHLIGHT));
  21. dc.FillSolidRect(&lpDrawItemStruct->rcItem,
  22. ::GetSysColor(COLOR_HIGHLIGHT));
  23. }
  24. else
  25. {
  26. if(lpDrawItemStruct->itemID%2)
  27. dc.FillSolidRect(&lpDrawItemStruct->rcItem, RGB(128,128,128));
  28. else
  29. dc.FillSolidRect(&lpDrawItemStruct->rcItem, RGB(255,128,255));
  30. }
  31. // If this item has the focus, draw a red frame around the
  32. // item's rect.
  33. if ((lpDrawItemStruct->itemAction | ODA_FOCUS) &&
  34. (lpDrawItemStruct->itemState & ODS_FOCUS))
  35. {
  36. CBrush br(RGB(0, 0, 128));
  37. dc.FrameRect(&lpDrawItemStruct->rcItem, &br);
  38. }
  39. lpDrawItemStruct->rcItem.left += 5;
  40. // Draw the text.
  41. dc.DrawText(
  42. lpszText,
  43. strlen(lpszText),
  44. &lpDrawItemStruct->rcItem,
  45. DT_WORDBREAK);
  46. // Reset the background color and the text color back to their
  47. // original values.
  48. dc.SetTextColor(crOldTextColor);
  49. dc.SetBkColor(crOldBkColor);
  50. dc.Detach();
  51. }
  52. // 重写MeasureItem虚函数
  53. void CNewListBox::MeasureItem(LPMEASUREITEMSTRUCT lpMeasureItemStruct)
  54. {
  55. // TODO: Add your code to determine the size of specified item
  56. ASSERT(lpMeasureItemStruct->CtlType == ODT_LISTBOX);
  57. LPCTSTR lpszText = (LPCTSTR) lpMeasureItemStruct->itemData;
  58. ASSERT(lpszText != NULL);
  59. CRect rect;
  60. GetItemRect(lpMeasureItemStruct->itemID, &rect);
  61. CDC* pDC = GetDC();
  62. lpMeasureItemStruct->itemHeight = pDC->DrawText(lpszText, -1, rect, DT_WORDBREAK | DT_CALCRECT);
  63. ReleaseDC(pDC);
  64. }
  65. // 调用方法
  66. CNewListBox m_listBox; // 成员变量
  67. #define IDC_LISTBOX 0x1010
  68. m_listBox.Create(WS_CHILD | WS_VISIBLE | WS_BORDER | WS_HSCROLL | WS_VSCROLL |
  69. LBS_OWNERDRAWVARIABLE , CRect(0, 0, 300, 200), this, IDC_LISTBOX);
  70. for(int i=0; i<10; i++)
  71. {
  72. if(i%2)
  73. m_listBox.AddString(_T("Hello,World1/r/nHello,World2"));
  74. else
  75. m_listBox.AddString(_T("Hello,World"));
  76. }

效果图如下所示:

简单的自绘CListBox(多行显示)(覆盖DrawItem函数,然后用CDC绘制)

http://blog.****.net/visualeleven/article/details/6062383