需要用到几个Win32函数:
FindWindow
GetWindowRect
SetWindowPos
//获取第三方程序窗口句柄 IntPtr hwnd = (IntPtr)Win32.FindWindow(null, "第三方程序窗口标题"); //获取窗口的位置和大小 Win32.GetWindowRect(hwnd, out rect); //设置窗口位置,第二个参数的意思是置顶,最后一个参数的意思是不可改变大小 Win32.SetWindowPos(hwnd, -1, rect.Left, rect.Top, rect.Right - rect.Left, rect.Bottom - rect.Top, 1);
获取窗口标题,可以用 VS 自带的 Spy++ 工具,选中窗口后,确定,查看属性,就可以看到“窗口标题”。
时间: 2024-10-27 06:57:31