我在CodeProject上看到了这篇文章,它是动态设置CComboBox
的宽度的。
但是,我正在使用CComboBoxEx
:
如您所见,最后一个条目被裁剪。因此,我想自动扩大下拉列表。
还需要考虑到它们也是左侧图标空间的事实。所以这还不够好:
BOOL CMyComboBox::OnCbnDropdown()
{
// Reset the dropped width
CString str;
CRect rect;
int nWidth = 0;
int nNumEntries = GetCount();;
CClientDC dc(this);
int nSave = dc.SaveDC();
dc.SelectObject(GetFont());
for (int i = 0; i < nNumEntries; i++)
{
GetLBText(i, str);
int nLength = dc.GetTextExtent(str).cx;
if (nLength>nWidth)
nWidth = nLength;
}
nWidth += 2*::GetSystemMetrics(SM_CXEDGE) + 4;
// check if the current height is large enough for the items in the list
GetDroppedControlRect(&rect);
if (rect.Height() <= nNumEntries*GetItemHeight(0))
nWidth +=::GetSystemMetrics(SM_CXVSCROLL);
dc.RestoreDC(nSave);
SetDroppedWidth(nWidth);
return FALSE;
}
我们如何考虑左侧的图标?
答案 0 :(得分:2)
这有效:
void CDatesComboBoxEx::OnCbnDropdown()
{
CString str;
CRect rect;
int nWidth = 0, nImageWidth = 0;
int nNumEntries = GetCount();
if (nNumEntries > 0)
{
// Get the width of an image list entry
auto pImageList = GetImageList();
if (pImageList != nullptr && pImageList->GetImageCount() > 0)
{
IMAGEINFO sInfo;
pImageList->GetImageInfo(0, &sInfo);
nImageWidth = sInfo.rcImage.right - sInfo.rcImage.left;
}
CClientDC dc(this);
int nSave = dc.SaveDC();
dc.SelectObject(GetFont());
for (int i = 0; i < nNumEntries; i++)
{
COMBOBOXEXITEM sItem;
TCHAR szBuffer[_MAX_PATH] = _T("");
sItem.mask = CBEIF_INDENT | CBEIF_TEXT;
sItem.iItem = i;
sItem.cchTextMax = _MAX_PATH;
sItem.pszText = szBuffer;
if (GetItem(&sItem))
{
int nLength = dc.GetTextExtent(szBuffer).cx + nImageWidth + (sItem.iIndent * 10);
if (nLength > nWidth)
nWidth = nLength;
}
}
nWidth += 2 * ::GetSystemMetrics(SM_CXEDGE) + 4;
// check if the current height is large enough for the items in the list
GetDroppedControlRect(&rect);
if (rect.Height() <= nNumEntries * GetItemHeight(0))
nWidth += ::GetSystemMetrics(SM_CXVSCROLL);
dc.RestoreDC(nSave);
SetDroppedWidth(nWidth);
}
}
结果: