CComboBox::SetHorizontalExtent

设置的宽度,以像素,组合框的列表框部分可以水平滚动。

void SetHorizontalExtent(
   UINT nExtent 
);

参数

  • nExtent
    指定组合框的列表框部分可以水平滚动的像素数目。

备注

如果列表框的宽度小于此值,水平滚动条将水平滚动列表框中的项。 如果列表框的宽度等于或大于此值,水平滚动条隐藏;或者,如果组合框包含 CBS_DISABLENOSCROLL 样式,禁用。

示例

// 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);

// Set the horizontal extent so every character of all strings can 
// be scrolled to.
m_pComboBox->SetHorizontalExtent(dx);

要求

Header: afxwin.h

请参见

参考

CComboBox选件类

层次结构图

CComboBox::GetHorizontalExtent

CB_SETHORIZONTALEXTENT