我正在使用 Windows API 中的 GetWindowRect 来获取正在运行的应用程序的边界,然后我使用这些边界来截取应用程序。
我的代码适用于我测试过的大约 10 个程序,notepad.exe 和其他一些程序,但是我想将它与 RocLink800 一起使用的一个应用程序返回不正确的静态值,无论应用程序位置如何。
代码是 C# .NET
[StructLayout(LayoutKind.Sequential)]
public struct RECT
{
public int X;
public int Y;
public int Width;
public int Height;
}
[DllImport("user32.dll", SetLastError = true)]
static extern bool GetWindowRect(IntPtr hWnd, ref RECT Rect);
IntPtr error = GetWindowRect(proc.MainWindowHandle, ref rect);
... main code
while (error == (IntPtr)0)
{
error = GetWindowRect(proc.MainWindowHandle, ref rect);
}
int width = rect.right - rect.left;
int height = rect.bottom - rect.top;
现在所有应用程序都返回正确的宽度和高度,使用 roclink800 它返回错误值 1 表示成功,但无论应用程序位置如何,它都会返回以下值:
rect.right = 960 rect.left = 960 rect.bottom = 600 rect.top = 600
我完全不知道为什么会发生这种情况或如何纠正它,roclink800 是从 windows95 天移植的旧程序,所以它可能正在使用一些奇怪的 api,如果是这种情况,是否有任何来自 windows API 的替代方案(user32.dll ) 来获取它的屏幕坐标?
我想我可以强制应用程序全屏并以这种方式截屏,但它不太优雅。
任何人的想法?
编辑:我获取句柄的代码
Process roclink = new Process();
roclink.StartInfo.FileName = "C:/Program Files (x86)/ROCLINK800/Roclink.exe";
//roclink.StartInfo.FileName = "notepad.exe";
roclink.Start();
IntPtr error = GetWindowRect(roclink.MainWindowHandle, ref rect);
或者
try
{
proc = Process.GetProcessesByName("roclink")[0];
}
catch (IndexOutOfRangeException e)
{
return null;
}
两个代码块都返回相同的 IntPtr 并且它们都返回 960,960,600,600 但是如果我调用
int error = SetWindowPos(roclink.MainWindowHandle, HWND_TOPMOST, 0, 0, 25,50, SWP_SHOWWINDOW);
然后我得到返回的坐标是 0,0,25,50 但应用程序大小没有改变。
我尝试破坏程序,关闭 roclink 并且 SetWindowPos 和 GetWindowRect 都返回 0 并且不返回指示句柄确实是正确句柄的错误值。
所以看起来这个应用程序不能设置或通过 windowsAPI 获取它的窗口大小,有人知道为什么会这样吗?
roclink.StartInfo.WindowStyle = ProcessWindowStyle.Maximized;
这也被忽略,应用程序不会以全屏方式打开,只是上次打开时的大小。
编辑:我能想出的唯一解决方案是复制 roclink.exe 并手动全屏打开它然后关闭它,如果没有其他人打开此文件,它将始终全屏打开,这是狡猾的,我这样做不喜欢它,但除非有人知道为什么会这样,否则我可能不得不这样做。:(