共用方式為


CComboBox::GetDroppedControlRect

呼叫 GetDroppedControlRect 成員函式以取得下拉式清單方塊中可見 (來源) 的下拉清單方塊的螢幕座標。

void GetDroppedControlRect(
   LPRECT lprect 
) const;

參數

  • lprect
    為接收座標的 的長度 結構的點。

範例

// This example move a combo box so that the upper left
// corner of the combo box is at a specific point.

// The point to move the combo box to.
CPoint myPoint(30, 10);

CRect r;

m_pComboBox->GetDroppedControlRect(&r);

m_pComboBox->GetParent()->ScreenToClient(&r);
r.OffsetRect(myPoint - r.TopLeft());
m_pComboBox->MoveWindow(&r);

需求

Header: afxwin.h

請參閱

參考

CComboBox 類別

階層架構圖

CB_GETDROPPEDCONTROLRECT