共用方式為


CComboBox::SetDroppedWidth

呼叫此函式將最小允許的寬度,以像素為單位,下拉式方塊的清單方塊。

int SetDroppedWidth(
   UINT nWidth 
);

參數

  • nWidth
    下拉式方塊的清單方塊部分可允許的最小寬度,以像素為單位)。

傳回值

如果成功,清單方塊的新寬度,則為 CB_ERR

備註

這個函式只適用於有 CBS_DROPDOWNCBS_DROPDOWNLIST 樣式的下拉式方塊。

根據預設, 下拉式清單方塊可允許的最小寬度為 0。 當下拉式方塊的清單方塊部分顯示時,其寬度很大容許下限寬度或下拉式方塊的寬度。

範例

// Find the longest string in the combo box.
CString    str;
CSize      sz;
int        dx = 0;
TEXTMETRIC tm;
CDC*       pDC = m_pComboBox->GetDC();
CFont*     pFont = m_pComboBox->GetFont();

// Select the listbox font, save the old font
CFont* pOldFont = pDC->SelectObject(pFont);
// Get the text metrics for avg char width
pDC->GetTextMetrics(&tm);

for (int i = 0; i < m_pComboBox->GetCount(); i++)
{
   m_pComboBox->GetLBText(i, str);
   sz = pDC->GetTextExtent(str);

   // Add the avg width to prevent clipping
   sz.cx += tm.tmAveCharWidth;

   if (sz.cx > dx)
      dx = sz.cx;
}
// Select the old font back into the DC
pDC->SelectObject(pOldFont);
m_pComboBox->ReleaseDC(pDC);

// Adjust the width for the vertical scroll bar and the left and right border.
dx += ::GetSystemMetrics(SM_CXVSCROLL) + 2*::GetSystemMetrics(SM_CXEDGE);

// Set the width of the list box so that every item is completely visible.
m_pComboBox->SetDroppedWidth(dx);

需求

Header: afxwin.h

請參閱

參考

CComboBox 類別

階層架構圖

CComboBox::GetDroppedWidth

CB_SETDROPPEDWIDTH