Why I don't see a question mark when I use WS_

2019-07-06 01:47发布

I am learning WinAPI. MSDN:

WS_EX_CONTEXTHELP

The title bar of the window includes a question mark. When the user clicks the question mark, the cursor changes to a question mark with a pointer. If the user then clicks a child window, the child receives a WM_HELP message. The child window should pass the message to the parent window procedure, which should call the WinHelp function using the HELP_WM_HELP command. The Help application displays a pop-up window that typically contains help for the child window.

WS_EX_CONTEXTHELP cannot be used with the WS_MAXIMIZEBOX or WS_MINIMIZEBOX styles.

When I try to use WS_EX_CONTEXTHELP in my code I don't see a question mark. I didn't point the WS_MAXIMIZEBOX or WS_MINIMIZEBOX values in my code:

enter image description here

enter image description here

Why does it happen? My "Hello World" code:

#include <Windows.h>
#include <tchar.h>
#include <iostream>
#include <exception>

using namespace std;

#define APP_RC_SUCCEEDED 0
#define APP_RC_UNHANDLED_EXCEPTION 1
#define APP_RC_UNKNOWN_ERROR 2
#define APP_RC_WINDOW_CLASS_WAS_NOT_REGISTERED 3

#ifdef UNICODE
#define TCOUT std::wcout
#define TCIN std::wcin
#define TCERR std::wcerr
#else
#define TCOUT std::cout
#define TCIN std::cin
#define TCERR std::cerr
#endif

LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);

int WINAPI WinMain(
    HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpszCmdLine, INT iShow)
    try {
    LPCTSTR className = _T("{AAAEB8BF-04C5-4DEA-96C1-FC14F7E66A35}");

    WNDCLASSEX wndclassex;
    ZeroMemory(&wndclassex, sizeof(wndclassex));

    wndclassex.cbSize = sizeof(wndclassex);
    wndclassex.lpszClassName = className;
    wndclassex.cbClsExtra = 0;
    wndclassex.cbWndExtra = 0;
    wndclassex.hInstance = hInstance;
    wndclassex.lpfnWndProc = WndProc;
    wndclassex.hIcon = LoadIcon(NULL, IDI_APPLICATION);
    wndclassex.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
    wndclassex.hCursor = LoadCursor(NULL, IDC_ARROW);
    wndclassex.lpszMenuName = NULL;
    wndclassex.style = CS_HREDRAW | CS_VREDRAW;
    wndclassex.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);

    ATOM wAtom = RegisterClassEx(&wndclassex);

    if (!wAtom) {
        DWORD errCode = GetLastError();
        TCERR << _T("Function: RegisterClassEx. System Error Code: ")
            << errCode << endl;
        return APP_RC_WINDOW_CLASS_WAS_NOT_REGISTERED;
    }

    HWND hwnd = CreateWindowEx(
        WS_EX_CONTEXTHELP,
        className,
        _T("This is the title text..."),
        WS_OVERLAPPEDWINDOW,
        CW_USEDEFAULT,
        CW_USEDEFAULT,
        CW_USEDEFAULT,
        CW_USEDEFAULT,
        NULL,
        NULL,
        hInstance,
        NULL);

    ShowWindow(hwnd, iShow);
    UpdateWindow(hwnd);

    MSG msg;
    while (GetMessage(&msg, NULL, 0, 0)) {
        TranslateMessage(&msg);
        DispatchMessage(&msg);
    }
    return APP_RC_SUCCEEDED;
}
catch (exception ex)
{
    TCERR << ex.what() << endl;
    return APP_RC_UNHANDLED_EXCEPTION;
}
catch (...) {
    TCERR << _T("Unknown error.") << endl;
    return APP_RC_UNKNOWN_ERROR;
}

LRESULT CALLBACK WndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) {
    HDC hdc;
    PAINTSTRUCT ps;
    RECT rect;
    switch (uMsg) {
    case WM_CREATE:
        return 0;
    case WM_PAINT:
        hdc = BeginPaint(hwnd, &ps);
        GetClientRect(hwnd, &rect);
        DrawText(hdc, _T("Hello!"), -1, &rect, DT_SINGLELINE |
            DT_CENTER | DT_VCENTER);
        EndPaint(hwnd, &ps);
        return 0;
    case WM_DESTROY:
        PostQuitMessage(APP_RC_SUCCEEDED);
        return 0;
    default:
        return DefWindowProc(hwnd, uMsg, wParam, lParam);
    }
}

1条回答
在下西门庆
2楼-- · 2019-07-06 02:31

The answer can be found in the documentation quote contained in your question:

WS_EX_CONTEXTHELP cannot be used with the WS_MAXIMIZEBOX or WS_MINIMIZEBOX styles.

You specified the window style WS_OVERLAPPEDWINDOW which contains both WS_MAXIMIZEBOX and WS_MINIMIZEBOX.

查看更多
登录 后发表回答