CListBox::SetColumnWidth

对所有列像素宽度在多列的列表框(创建 LBS_MULTICOLUMN 样式)。

void SetColumnWidth(
   int cxWidth 
);

参数

  • cxWidth
    在所有列像素指定宽度。

示例

// Find the pixel width of the largest item.
CString str;
CSize   sz;
int     dx = 0;
CDC*    pDC = myListBox.GetDC();
for (int i=0;i < myListBox.GetCount();i++)
{
   myListBox.GetText( i, str );
   sz = pDC->GetTextExtent(str);

   if (sz.cx > dx)
      dx = sz.cx;
}
myListBox.ReleaseDC(pDC);

// Set the column width of the first column to be one and 1/3 units
// of the largest string. 
myListBox.SetColumnWidth(dx*4/3);

要求

Header: afxwin.h

请参见

参考

CListBox选件类

层次结构图

LB_SETCOLUMNWIDTH