我目前正在学习C++的Windows API,并且正在尝试创建ListView控件。我从MSDN文档中编辑了源代码,但由于没有在窗口中实际显示列表 View ,因此被卡住了。当我创建不同的控件时,它们显示没有问题。我使用此函数创建ListView。

HWND CreateListView(HWND hwndParent)
{
    INITCOMMONCONTROLSEX icex;
    icex.dwICC = ICC_LISTVIEW_CLASSES;
    icex.dwSize = sizeof(icex);
    if(InitCommonControlsEx(&icex) == FALSE) MessageBox(NULL,L"Initiation of common controls failed",L"Fail", MB_OK);

    RECT rcClient;

    GetClientRect(hwndParent, &rcClient);


    HWND hWndListView = CreateWindow(WC_LISTVIEW,
    L"",
    WS_CHILD | LVS_REPORT | LVS_EDITLABELS,
    0, 0,
    rcClient.right - rcClient.left,
    rcClient.bottom - rcClient.top,
    hwndParent,
    (HMENU)IDM_DATABAZA_LIST,
    hInst,
    NULL);

    return (hWndListView);
}

列表 View 创建成功,但是没有在窗口中显示。这里可能是什么问题?

最佳答案

添加WS_VISIBLE标志:

HWND hWndListView = CreateWindow(WC_LISTVIEW, L"",
    WS_VISIBLE|WS_CHILD|LVS_REPORT|LVS_EDITLABELS,...)

或使用ShowWindow(hWndListView, SW_SHOW)SetWindowPos(hWndListView,...,SWP_NOZORDER|SWP_SHOWWINDOW);
并添加错误检查
if (!hWndListView)
{
    OutputDebugStringW(L"error\n");
    return NULL;
}

09-06 20:41