次の方法で共有


CComboBox::SetDroppedWidth

最小限の有効な幅を、コンボ ボックスのリスト ボックスの高さ (ピクセル単位) を設定するには、この関数を呼び出します。

int SetDroppedWidth( 
   UINT nWidth  
);

パラメーター

  • nWidth
    ピクセルのコンボ ボックスのリスト ボックス部分に有効な、最小の幅。

戻り値

、リスト ボックスの新しい幅。それ以外の場合は CB_ERR成功した場合は。

解説

この関数は CBS_DROPDOWN または CBS_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);

必要条件

ヘッダー: afxwin.h

参照

関連項目

CComboBox クラス

階層図

CComboBox::GetDroppedWidth

CB_SETDROPPEDWIDTH