为什么我的高度和宽度为0,如下所示:
static void Main(string[] args)
{
Process notePad = new Process();
notePad.StartInfo.FileName = "notepad.exe";
notePad.Start();
IntPtr handle = notePad.Handle;
RECT windowRect = new RECT();
GetWindowRect(handle, ref windowRect);
int width = windowRect.Right - windowRect.Left;
int height = windowRect.Bottom - windowRect.Top;
Console.WriteLine("Height: " + height + ", Width: " + width);
Console.ReadLine();
}
以下是我对GetWindowRect的定义:
[DllImport("user32.dll")]
[return: MarshalAs(UnmanagedType.Bool)]
static extern bool GetWindowRect(IntPtr hWnd, ref RECT lpRect);
这是我对RECT的定义:
[StructLayout(LayoutKind.Sequential)]
public struct RECT
{
public int Left; // x position of upper-left corner
public int Top; // y position of upper-left corner
public int Right; // x position of lower-right corner
public int Bottom; // y position of lower-right corner
}
感谢大家的帮助。
答案 0 :(得分:9)
您正在将进程句柄传递给期望窗口句柄的函数GetWindowRect
。当然,这失败了。您应该发送Notepad.MainWindowHandle
。
答案 1 :(得分:5)
在记事本完全启动之前,您可能正在查询尺寸。试试这个:
notePad.Start();
notePad.WaitForInputIdle(); // Waits for notepad to finish startup
IntPtr handle = notePad.Handle;
答案 2 :(得分:1)
我喜欢使用pinvoke.net来检查我所有的PInvokes。 GetWindowRect在http://pinvoke.net/default.aspx/user32/GetWindowRect.html
中有详细描述