CComboBox::MeasureItem
呼叫框架,在具有主控描繪樣式的下拉式方塊中建立。
virtual void MeasureItem(
LPMEASUREITEMSTRUCT lpMeasureItemStruct
);
參數
- lpMeasureItemStruct
為 MEASUREITEMSTRUCT 結構的長度的指標。
備註
根據預設,此成員函式不會執行任何動作。 覆寫這個成員函式並填入 MEASUREITEMSTRUCT 結構通知視窗清單方塊的大小在下拉式方塊中。 如果下拉式方塊會以 CBS_OWNERDRAWVARIABLE 樣式,架構的每個項目呼叫此成員函式在清單方塊中。 否則,這個成員只能呼叫一次。
使用在主控描繪下拉式方塊的 CBS_OWNERDRAWFIXED 樣式建立 CWnd 的 SubclassDlgItem 成員函式會進一步的程式設計考量。 請參閱在 Technical Note 14的討論。
提供 MEASUREITEMSTRUCT 架構的說明請參閱 CWnd::OnMeasureItem 。
範例
// CMyComboBox is my owner-drawn combo box derived from CComboBox. This
// example measures an item and sets the height of the item to twice the
// vertical extent of its text. The combo box control was created with
// the following code:
// pmyComboBox->Create(
// WS_CHILD|WS_VISIBLE|WS_BORDER|WS_HSCROLL|WS_VSCROLL|
// CBS_SORT|CBS_OWNERDRAWVARIABLE,
// myRect, pParentWnd, 1);
//
void CMyComboBox::MeasureItem(LPMEASUREITEMSTRUCT lpMeasureItemStruct)
{
ASSERT(lpMeasureItemStruct->CtlType == ODT_COMBOBOX);
if (lpMeasureItemStruct->itemID != (UINT) -1)
{
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