gpt4 book ai didi

c# - 为什么我的高度和宽度为 0?

转载 作者:太空狗 更新时间:2023-10-29 20:57:24 25 4
gpt4 key购买 nike

为什么我的高度和宽度为 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
}

感谢大家的帮助。

最佳答案

您正在将进程句柄传递给需要窗口句柄的函数 GetWindowRect。自然,这失败了。您应该改为发送 Notepad.MainWindowHandle

关于c# - 为什么我的高度和宽度为 0?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5705483/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com