控件最小化时的大小(GetWindowPlacement)
本文关键字:GetWindowPlacement 最小化 控件 | 更新日期: 2023-09-27 18:05:47
似乎GetWindowPlacement只能返回最小化的窗口的大小。
当窗口最小化时,是否有可能获得该窗口内的单个控件的大小?
rcNormalPosition定义为:
窗口在恢复位置时的坐标。
使用GetWindowRect函数获取当前大小。关于这个话题,Raymond Chen也写了一篇有趣的文章。
下面的程序给出了最小化窗口中控件的正确大小:
using System.Runtime.InteropServices;
using System;
[StructLayout(LayoutKind.Sequential)]
struct RECT
{
public int L;
public int T;
public int R;
public int B;
}
static class Program
{
void Main()
{
RECT r;
bool result = GetWindowRect(0x00120E34, out r);
Console.WriteLine("{0}: {1} {2} {3} {4}", r.T, r.L, r.B, r.R);
}
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
extern bool GetWindowRect(int hwnd, out RECT lpRect);
}
True: -31948 -31335 -31923 -30761
GetWindowRect呢?