我正在尝试使用以下方法获取窗口的高度和宽度:
[DllImport("User32.dll", SetLastError = true)]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool PrintWindow(IntPtr hwnd, IntPtr hDC, uint nFlags);
[DllImport("user32.dll", CharSet = CharSet.Auto, ExactSpelling = true)]
public static extern IntPtr GetForegroundWindow();
[DllImport("user32.dll")]
private static extern bool GetWindowRect(IntPtr handle, out Rectangle rect);
private void timer1_Tick(object sender, EventArgs e)
{
Rectangle bonds = new Rectangle();
GetWindowRect(GetForegroundWindow(), out bonds);
Bitmap bmp = new Bitmap(bonds.Width, bonds.Height);
Graphics memoryGraphics = Graphics.FromImage(bmp);
IntPtr dc = memoryGraphics.GetHdc();
PrintWindow(GetForegroundWindow(), dc, 0x1);
memoryGraphics.ReleaseHdc(dc);
bmp.Save("C:\\Test.gif", ImageFormat.Gif);
}
但是bonds.width 和height 比真正的窗口还要多。
示例:我的窗口是 100x150,bond.height 是 400,bond.width 是 500。我得到一张大小为 400x500 的图片,其中包含图片角落的窗口(这很好),其余的是黑色,因为图片比窗户大得多(这很糟糕)
注意:我不在乎窗户是无气的,这对我有好处。
那么有什么建议,或者是获得地区的更好方法吗?