爲什麼我得到的0 HEIGH和寬度與下方:爲什麼我的高度和寬度都是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
}
謝謝大家的幫助。
你是如何定義RECT的? – 2011-04-18 15:50:43
我懷疑這是一場比賽 - 嘗試在Start()行後加入幾秒鐘的睡眠時間讓記事本啓動並運行。不知道如何等待這個編程。 – Rup 2011-04-18 15:51:49
另外,GetWindowRect返回的值是什麼? – 2011-04-18 15:52:02