CListBox::MeasureItem

调用由结构,当具有所有者描述样式的列表框创建。

virtual void MeasureItem( 
   LPMEASUREITEMSTRUCT lpMeasureItemStruct  
);

参数

备注

默认情况下,此成员函数不执行任何操作。 重写该成员函数并填充 MEASUREITEMSTRUCT 结构通知Windows列表框维度。 如果列表框。LBS_OWNERDRAWVARIABLE 样式创建,框架对每个项调用该成员函数的列表框。 否则,此成员仅调用一次。

有关使用 LBS_OWNERDRAWFIXED 样式的详细信息在所有者描述用 CWndSubclassDlgItem 成员函数创建的列表框,请参见。技术说明14的讨论。

MEASUREITEMSTRUCT 结构参见 CWnd::OnMeasureItem**.**的说明

示例

// CMyODListBox is my owner-drawn list box derived from CListBox. This  
// example measures an item and sets the height of the item to twice the  
// vertical extent of its text. The list box control was created with the  
// following code: 
//   m_myODListBox.Create( 
//      WS_CHILD|WS_VISIBLE|WS_BORDER|WS_HSCROLL|WS_VSCROLL| 
//      LBS_SORT|LBS_MULTIPLESEL|LBS_OWNERDRAWVARIABLE|LBS_WANTKEYBOARDINPUT, 
//      CRect(10,250,200,450), pParentWnd, IDC_MYODLISTBOX); 
// 
void CMyODListBox::MeasureItem(LPMEASUREITEMSTRUCT lpMeasureItemStruct)
{
   ASSERT(lpMeasureItemStruct->CtlType == ODT_LISTBOX);
   LPCTSTR lpszText = (LPCTSTR) lpMeasureItemStruct->itemData;
   ASSERT(lpszText != NULL);
   CSize   sz;
   CDC*    pDC = GetDC();

   sz = pDC->GetTextExtent(lpszText);

   ReleaseDC(pDC);

   lpMeasureItemStruct->itemHeight = 2*sz.cy;
}

要求

Header: afxwin.h

请参见

参考

CListBox Class

层次结构图

CListBox::CompareItem

CWnd::OnMeasureItem

CListBox::DrawItem

CListBox::DeleteItem