我认为WINDOWPOS 结构是您正在寻找的。 其他窗口结构可能会派上用场。
一些谷歌搜索出现了另一个例子,它不使用 WINDOWPOS:
1、调用API FindWindow() 获取窗口句柄(使用SPY++获取ClassName & WindowName这两个参数);
2、调用API GetWindowRect() 获取指定窗口的大小和位置。
代码片段
[DllImport("user32.dll")]
private static extern IntPtr FindWindow(string className, string windowName);
[DllImport("user32.dll")]
private static extern int GetWindowRect(IntPtr hwnd, out Rectangle rect);
private void button2_Click(object sender, EventArgs e)
{
string className = "yourClassName";
string windowName = "yourWindowName";
Rectangle rect;
IntPtr hwnd = FindWindow(className, windowName);
GetWindowRect(hwnd, out rect);
}