::GetSystemMetrics (SM_CYBORDER)
...以1回来,我知道标题栏高于一个像素:/
我也尝试过:
RECT r; r.left = r.top = 0; r.right = r.bottom = 400; ::AdjustWindowRect (& r, WS_OVERLAPPED, FALSE); _bdW = (uword)(r.right - r.left - 400); _bdH = (uword)(r.bottom - r.top - 400);
但边界w,h回归为0。
在我的WM_SIZE处理程序中,我需要确保窗口的高度发生变化 “步骤”因此,例如,整个新的文本行可以适合窗口 在底部没有“垃圾部分行空间”。
但是:: MoveWindow需要添加边框空间的尺寸。
有些人必须在此之前做到这一点...... 感谢您的帮助:))
答案 0 :(得分:39)
可以使用GetWindowRect和GetClientRect函数计算所有窗口边框的大小。
Suite101有一篇关于resizing a window and the keeping client area at a know size的文章。
以下是他们的示例代码:
void ClientResize(HWND hWnd, int nWidth, int nHeight)
{
RECT rcClient, rcWind;
POINT ptDiff;
GetClientRect(hWnd, &rcClient);
GetWindowRect(hWnd, &rcWind);
ptDiff.x = (rcWind.right - rcWind.left) - rcClient.right;
ptDiff.y = (rcWind.bottom - rcWind.top) - rcClient.bottom;
MoveWindow(hWnd,rcWind.left, rcWind.top, nWidth + ptDiff.x, nHeight + ptDiff.y, TRUE);
}
答案 1 :(得分:12)
int border_thickness = GetSystemMetrics(SM_CXSIZEFRAME);
实际上,上述结果等于:
GetClientRect(hWnd, &rcClient);
GetWindowRect(hWnd, &rcWind);
int border_thickness = ((rcWind.right - rcWind.left) - rcClient.right)/2;
但“GetSystemMetrics(SM_CXSIZEFRAME)”很容易使用。
答案 2 :(得分:11)
我认为你要找的是SM_CYCAPTION
- 这就是标题栏的高度。 SM_CYBORDER
是窗口水平边缘的高度。
答案 3 :(得分:3)
除非窗口最小化或未完全初始化,否则stukelly建议的方法将起作用。在这些条件下为您提供边框大小的替代方法是使用AdjustWindowRectEx
函数。这是一个例子:
CSize GetBorderSize(const CWnd& window)
{
// Determine the border size by asking windows to calculate the window rect
// required for a client rect with a width and height of 0
CRect rect;
AdjustWindowRectEx(&rect, window.GetStyle(), FALSE, window.GetExStyle());
return rect.Size();
}
根据应用程序的不同,如果需要当前可见的边框大小,可能需要将此方法与stukelly结合使用:
CSize GetBorderSize(const CWnd& window)
{
if (window.IsZoomed())
{
// The total border size is found by subtracting the size of the client rect
// from the size of the window rect. Note that when the window is zoomed, the
// borders are hidden, but the title bar is not.
CRect wndRect, clientRect;
window.GetWindowRect(&wndRect);
window.GetClientRect(&clientRect);
return wndRect.Size() - clientRect.Size();
}
else
{
// Determine the border size by asking windows to calculate the window rect
// required for a client rect with a width and height of 0. This method will
// work before the window is fully initialized and when the window is minimized.
CRect rect;
AdjustWindowRectEx(&rect, window.GetStyle(), FALSE, window.GetExStyle());
return rect.Size();
}
}
答案 4 :(得分:2)
Head Geek给出了详细的答案:使用GetSystemMetrics来添加标题和边框位。您还可以在GetWindowRect和GetClientRect之间对宽度/高度进行区分。这将为您提供所有字幕/边框等的总和。
答案 5 :(得分:0)
您还有另一个解决方案...您可以通过在WM_CREATE和WM_INITDIALOG消息中调用专用函数来预先计算边界。并在更改窗口样式或菜单分为两行时刷新值。
RECT cRect, wRect, oRect;
GetWindowRect(hWnd, &wRect);
GetClientRect(hWnd, &cRect);
MapWindowPoints(hWnd, NULL, (LPPOINT)&cRect, 2);
oRect.left = cRect.left - wRect.left;
oRect.top = cRect.top - wRect.top;
oRect.right = wRect.right - cRect.right;
oRect.bottom = wRect.bottom - cRect.bottom;