无法改变按钮的位置

时间:2012-12-04 19:40:39

标签: c++ windows winapi

在C ++应用程序中,我使用CreateWindowEx创建一个按钮,稍后尝试使用SetWindowPos更改其位置,但该按钮不会出现在我想要的位置。

有趣的是,当我调整窗口大小(使用鼠标,而不是以编程方式)时,我可以看到一个空白轮廓与按钮应该出现的按钮大小相同。这一定是因为我还调用SetWindowPos来响应窗口大小调整事件。但是,实际按钮保持在同一位置。我发布了截图,但由于某种原因,剪影永远不会出现在屏幕截图中。

这是更改X位置的代码(更改Y位置的代码几乎相同):

HRESULT Control::put_Left(float left)
{
    RECT windowRect;
    ::GetWindowRect(m_hWnd, &windowRect);

    if (m_isTopLevel)
    {
        BOOL bResult = ::SetWindowPos(
            m_hWnd,
            nullptr,
            static_cast<int>(DesktopDpi::GetInstance().DipsToPixelsX(left)),
            windowRect.top,
            0,
            0,
            SWP_NOSIZE | SWP_NOZORDER | SWP_NOREPOSITION
            );

        if (!bResult)
            return HRESULT_FROM_WIN32(::GetLastError());
    }
    else
    {
        // NOTE: for a button this is the code that will execute, because a
        // button is not a top-level window

        HWND hWndParent = ::GetParent(m_hWnd);
        if (hWndParent == nullptr)
            return HRESULT_FROM_WIN32(::GetLastError());

        POINT parentPos = {0, 0};
        if (!::ClientToScreen(hWndParent, &parentPos))
            return E_FAIL;

        BOOL bResult = ::SetWindowPos(
            m_hWnd,
            nullptr,
            static_cast<int>(DesktopDpi::GetInstance().DipsToPixelsX(left)),
            windowRect.top - parentPos.y,
            0,
            0,
            SWP_NOSIZE | SWP_NOZORDER | SWP_NOREPOSITION
            );

        if (!bResult)
            return HRESULT_FROM_WIN32(::GetLastError());
    }

    return S_OK;
}

1 个答案:

答案 0 :(得分:0)

在处理WM_SIZE时,您确定按钮的父级没有将其移回旧位置吗?从您的描述来看,这听起来确实如此。