gpt4 book ai didi

c++ - 调整 ListView 大小时如何将标题宽度设置为其 ListView 控件宽度?

转载 作者:行者123 更新时间:2023-11-28 04:11:43 24 4
gpt4 key购买 nike

当使用 win32 api 调整大小时,我想将 ListView 中的标题宽度设置为其 ListView 控件的宽度。所以我使用 ListView_SetColumnWidth() 将其宽度设置为其控件的宽度宽度,但它不起作用。

这是 WinMain() 中的代码:

InitCommonControls();
hwndList1 = CreateWindow(WC_LISTVIEW , L"" , WS_VISIBLE | WS_CHILD | LVS_REPORT | WS_BORDER | WS_VSCROLL, 10 , 10 , width , height, hwnd, NULL, GetModuleHandle(NULL), 0);

//Sub classing the list control
SetWindowSubclass(hwndList1 ,ListProc,0 ,NULL);

SendMessage(hwndList1,LVM_SETEXTENDEDLISTVIEWSTYLE,LVS_EX_FULLROWSELECT,LVS_EX_FULLROWSELECT);
hHeader1=ListView_GetHeader(hwndList1);

GetClientRect(hwndList1 , &rect1);
CreateColumn(hwndList1 , 0 , (char*)L"MASTER" , rect1.right );

//enable arrows
EnableScrollBar(hwndList1 , SB_VERT , ESB_ENABLE_BOTH);

//scroll down
SendMessage(hwndList1, WM_VSCROLL, SB_BOTTOM, 0L);

这是ListProc():

//the list proc
LRESULT CALLBACK ListProc( HWND hwnd, UINT msg, WPARAM wp, LPARAM lp,UINT_PTR, DWORD_PTR ){
switch(msg)
{
case WM_NOTIFY :
if (((LPNMHDR) lp)->code == NM_CUSTOMDRAW)
{

LPNMCUSTOMDRAW lpcd = (LPNMCUSTOMDRAW)lp;
switch(lpcd->dwDrawStage)
{
case CDDS_PREPAINT :
return CDRF_NOTIFYITEMDRAW;
case CDDS_ITEMPREPAINT:
{

SetBkColor(lpcd->hdc, RGB(0, 135, 234));
SetTextColor(lpcd->hdc, RGB(255, 255, 245));
return CDRF_NEWFONT;
}
break;
}
}

break;

case WM_NCPAINT:
{
RECT rc;
GetWindowRect(hwnd, &rc);
OffsetRect(&rc, -rc.left, -rc.top);
auto hdc = GetWindowDC(hwnd);
auto hpen = CreatePen(PS_SOLID, 1, RGB(201, 201, 201));
auto oldpen = SelectObject(hdc, hpen);
SelectObject(hdc, GetStockObject(NULL_BRUSH));
Rectangle(hdc, rc.left, rc.top, rc.right, rc.bottom);
SelectObject(hdc, oldpen);
DeleteObject(oldpen);
ReleaseDC(hwnd, hdc);
return 0;
}

case WM_NCDESTROY:
RemoveWindowSubclass(hwnd, ListProc, 0);
break;
}

return DefSubclassProc(hwnd, msg, wp, lp);
}

下面的代码是父窗口过程的WndProc():

//The window procedure
LRESULT CALLBACK WndProc( HWND hwnd , UINT msg , WPARAM wParam , LPARAM lParam){
switch(msg){
case WM_SIZE:{
int nHeight , nWidth;

width =(int)((nWidth /2) * 0.8);
height =(int)((nHeight/2) * 0.7);

if( wParam == SIZE_RESTORED ){

SetWindowPos(hwndList1, 0 , 10, 10 , width, height,SWP_NOZORDER|SWP_NOMOVE);

RECT Rc;
GetClientRect(hwndList1, &Rc);
ListView_SetColumnWidth(hwndList1, 0, Rc.right - Rc.left);
}

else if ( wParam == SIZE_MAXIMIZED )
{
SetWindowPos(hwndList1, 0 , 20, 20, width, height,0);
RECT Rc;
GetClientRect(hwndList1, &Rc);
ListView_SetColumnWidth(hwndList1, 0, Rc.right - Rc.left);//
}
}
break;
case WM_NOTIFY:
if(((LPNMHDR)lParam)->code == NM_CUSTOMDRAW) {
LPNMLVCUSTOMDRAW lplvcd = (LPNMLVCUSTOMDRAW)lParam;
switch(lplvcd->nmcd.dwDrawStage) {
case CDDS_PREPAINT:
return CDRF_NOTIFYITEMDRAW;

case CDDS_ITEMPREPAINT:

if (((int)lplvcd->nmcd.dwItemSpec%2)==0) {
lplvcd->clrText = RGB(0,0,0);
lplvcd->clrTextBk = RGB(255, 255, 255);
} else {
lplvcd->clrText = RGB(0,0,0);
lplvcd->clrTextBk = RGB(255,255,255);
}
return CDRF_NEWFONT;

}

}
return TRUE;

case WM_COMMAND:
switch(LOWORD(wParam)){
case ID_FILE_EXIT:
PostMessage(hwnd, WM_CLOSE , 0 , 0);
break;
case ID_ABOUT:
{
int ret=DialogBox( GetModuleHandle(NULL) , MAKEINTRESOURCE(ID_ABOUT) , hwnd , AboutDlgProc );

}
break;
}
break;

case WM_CLOSE:
DestroyWindow( hwnd );
break;

case WM_DESTROY:
PostQuitMessage(0);
break;

default:
return DefWindowProc( hwnd , msg , wParam , lParam );
}
return 0;
}

我错过了什么?还有其他方法吗?

谢谢!

最佳答案

使用 GetClientRect 找到控件的内部矩形。示例:

case WM_SIZE:
{
//resize the listview control first
//calculate width/height
SetWindowPos(hwndList1, NULL, 0, 0, width, height, SWP_NOZORDER|SWP_NOMOVE);

RECT rc;
GetClientRect(hwndList1, &rc);
ListView_SetColumnWidth(hwndList1, 0, rc.right - rc.left);//rc.left is zero
break;
}

客户端矩形可以比窗口矩形小一点。

您可以使用宽度/高度通过 SetWindowPosMoveWindow 设置 ListView 控件的大小。这将对应于 GetWindowRect。但是您想要列宽的客户端矩形。

您还可以子类化 listview 控件并响应 listview_proc 中的 WM_SIZE

WM_SIZE 在用户调整主窗口大小时发送。窗口首次打开时默认不触发。首次初始化窗口时,您可能必须调用 ListView_SetColumnWidth


另请注意,您无法在 ListProc 中处理自定义绘制。您必须从 ListProc 中删除 WM_NOTIFY 部分,仅将其添加到 WndProc

建议修改:

LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch(msg)
{
case WM_SIZE:
{
int nWidth = LOWORD(lParam);
int nHeight = HIWORD(lParam);
int width = (int)((nWidth / 2) * 0.8);
int height = (int)((nHeight / 2) * 0.7);
SetWindowPos(hwndList1, 0, 20, 20, width, height, SWP_NOZORDER);
RECT rc;
GetClientRect(hwndList1, &rc);
ListView_SetColumnWidth(hwndList1, 0, rc.right - rc.left);
}
break;
case WM_NOTIFY:
if(((LPNMHDR)lParam)->code == NM_CUSTOMDRAW)
{
LPNMLVCUSTOMDRAW lplvcd = (LPNMLVCUSTOMDRAW)lParam;
switch(lplvcd->nmcd.dwDrawStage)
{
case CDDS_PREPAINT:
return CDRF_NOTIFYITEMDRAW;
case CDDS_ITEMPREPAINT:
lplvcd->clrText = RGB(255, 0, 0);
lplvcd->clrTextBk = RGB(255, 255, 0);
return CDRF_NEWFONT;
}
}
break;
...
}

关于c++ - 调整 ListView 大小时如何将标题宽度设置为其 ListView 控件宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57645381/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com