AdjustWindowRectExForDpi似乎无法调整客户区大小

时间:2017-07-10 12:39:14

标签: c++ winapi c++17

在尝试创建正确支持每个监视器DPI感知版本2的应用程序时,我遇到了一个问题,即在监视器上启动时,我的应用程序窗口的客户端区域大小不正确缩放已启用。

我选择窗口的适当位置直到Windows,所以我不知道窗口将在哪个监视器上创建,因此我也无法知道我应该扩展的DPI在创建窗口之前。
对此的解决方案是,一旦创建窗口,我使用GetDpiForWindow获取监视器的DPI并设置大小,以便它匹配我想要的客户区大小。在这种情况下,我希望缩放客户区 - 例如,在125%显示器上应为375x187时,300x150客户区。

正确获取DPI(在我的情况下为120),但使用SetWindowPos意味着我必须考虑窗口边框,标题栏等。为此,我使用AdjustWindowRectExForDpi,这些帐户用于窗口边界的DPI缩放。

令我惊讶的是,当在DPI规模的监视器上启动应用程序时,生成的客户端区域大小仍为300x150。在非DPI缩放的监视器上启动应用程序,然后将其移动到一个监视器,导致客户区域大小正确。

最小例子:

#include <Windows.h>

LRESULT CALLBACK startup_window_procedure(HWND window, UINT message, WPARAM w_param, LPARAM l_param)
{
    switch (message)
    {
        case WM_DESTROY:
        {
            PostQuitMessage(0);
            return 0;
        }

        case WM_DPICHANGED:
        {
            // Resize the window
            RECT* new_rect = reinterpret_cast<RECT*>(l_param);

            if (!SetWindowPos(window, nullptr, new_rect->left, new_rect->top, new_rect->right - new_rect->left, new_rect->bottom - new_rect->top, SWP_NOZORDER | SWP_NOACTIVATE))
            {
                return 1;
            }

            return 0;
        }
    }

    return DefWindowProcW(window, message, w_param, l_param);
}

int CALLBACK wWinMain(HINSTANCE instance, HINSTANCE prev_instance, PWSTR cmd_line, int cmd_show)
{
    constexpr auto window_class_name = L"example_dialog";
    constexpr auto window_style = WS_OVERLAPPEDWINDOW;

    // Enable per-monitor DPI-awareness version 2
    if (!SetProcessDpiAwarenessContext(DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE_V2))
    {
        return 1;
    }

    // Create the window
    WNDCLASSEXW window_class;
    window_class.cbSize = sizeof(window_class);
    window_class.style = CS_HREDRAW | CS_VREDRAW;
    window_class.lpfnWndProc = startup_window_procedure;
    window_class.cbClsExtra = 0;
    window_class.cbWndExtra = 0;
    window_class.hInstance = instance;
    window_class.hIcon = nullptr;
    window_class.hCursor = nullptr;
    window_class.hbrBackground = reinterpret_cast<HBRUSH>(COLOR_WINDOW + 1);
    window_class.lpszMenuName = nullptr;
    window_class.lpszClassName = window_class_name;
    window_class.hIconSm = nullptr;

    if (!RegisterClassExW(&window_class))
    {
        return 1;
    }

    HWND window = CreateWindowExW(0, window_class_name, L"Example window", window_style, CW_USEDEFAULT, CW_USEDEFAULT, 0, 0, nullptr, nullptr, instance, nullptr);

    if (!window)
    {
        return 1;
    }

    UINT dpi = GetDpiForWindow(window);

    // Actually set the appropriate window size
    RECT scaled_size;
    scaled_size.left = 0;
    scaled_size.top = 0;
    scaled_size.right = 300;
    scaled_size.bottom = 150;

    if (!AdjustWindowRectExForDpi(&scaled_size, window_style, false, 0, dpi))
    {
        return 1;
    }

    if (!SetWindowPos(window, nullptr, 0, 0, scaled_size.right - scaled_size.left, scaled_size.bottom - scaled_size.top, SWP_NOZORDER | SWP_NOACTIVATE | SWP_NOMOVE))
    {
        return 1;
    }

    ShowWindow(window, SW_SHOWNORMAL);

    // Message loop
    MSG message;
    int result;

    while ((result = GetMessageW(&message, nullptr, 0, 0)) != 0)
    {
        if (result == -1)
        {
            return 1;
        }
        else
        {
            TranslateMessage(&message);
            DispatchMessageW(&message);
        }
    }

    return static_cast<int>(message.wParam);
}

该示例要求至少运行Windows 10 1607并编译Windows SDK 14393.

在DPI规模的显示器上启动应用程序时,如何正确缩放客户端区域大小?

1 个答案:

答案 0 :(得分:3)

AdjustWindowRectExForDpi不会调整客户端区域大小,但是当窗口的非客户区域是DPI缩放时,它确实考虑了窗口边框和标题栏的大小增加。这意味着您必须自己缩放客户区大小。

可以修改示例代码以手动缩放客户区大小,如下所示:

// Calculate the scaling factor. 96 is the default Windows DPI, unless DPI scaling is enabled.
float scaling_factor = static_cast<float>(dpi) / 96;

RECT scaled_size;
scaled_size.left = 0;
scaled_size.top = 0;
scaled_size.right = static_cast<LONG>(300 * scaling_factor);
scaled_size.bottom = static_cast<LONG>(150 * scaling_factor);

if (!AdjustWindowRectExForDpi(&scaled_size, window_style, false, 0, dpi))
{
    return 1;
}

if (!SetWindowPos(window, nullptr, 0, 0, scaled_size.right - scaled_size.left, scaled_size.bottom - scaled_size.top, SWP_NOZORDER | SWP_NOACTIVATE | SWP_NOMOVE))
{
    return 1;
}