CComboBox::CompareItem
정렬 된 소유자 그리기 콤보 상자의 목록 상자 부분에서 새 항목의 상대적 위치를 결정 하는 프레임 워크에서 호출 합니다.
virtual int CompareItem(
LPCOMPAREITEMSTRUCT lpCompareItemStruct
);
매개 변수
- lpCompareItemStruct
하 긴 포인터는 COMPAREITEMSTRUCT 구조.
반환 값
에 설명 된 두 항목의 상대 위치를 나타내는 COMPAREITEMSTRUCT 구조.다음 값 중 하나가 될 수 있습니다.
값 |
의미 |
---|---|
– 1 |
항목 1 항목 2 앞으로 정렬합니다. |
0 |
항목 1과 항목 2는 정렬 합니다. |
1 |
항목 1 항목 2 뒤를 정렬합니다. |
참조 CWnd::OnCompareItem 에 대 한 설명은 COMPAREITEMSTRUCT.
설명
기본적으로이 함수는 실행 되지 않습니다.소유자 그리기 콤보 상자를 만들 경우는 LBS_SORT 스타일 목록 상자에 추가 된 새 항목이 정렬 프레임 워크를 지원 하기 위해이 멤버 함수 재정의 해야 합니다.
예제
// CMyComboBox is my owner-drawn combo box derived from CComboBox. This
// example compares two items using strcmp to sort items in reverse
// alphabetical order. 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);
//
int CMyComboBox::CompareItem(LPCOMPAREITEMSTRUCT lpCompareItemStruct)
{
int iComp = 0;
ASSERT(lpCompareItemStruct->CtlType == ODT_COMBOBOX);
LPCTSTR lpszText1 = (LPCTSTR) lpCompareItemStruct->itemData1;
ASSERT(lpszText1 != NULL);
LPCTSTR lpszText2 = (LPCTSTR) lpCompareItemStruct->itemData2;
ASSERT(lpszText2 != NULL);
if (NULL != lpszText1 && NULL != lpszText2)
{
iComp = _tcscmp(lpszText2, lpszText1);
}
return iComp;
}
요구 사항
헤더: afxwin.h