CComboBox::SetDroppedWidth

调用此函数设置min允许的宽度,以像素,组合框的列表框。

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