我只是想看看我是否可以制作一个位于显示器左侧的程序。
通过这样做,我使用 BackgroundWorker 循环遍历所有用户进程(具有 MainWindowTitle 的用户进程)并使用 SetWindowPos 根据我的侧边栏移动和调整它们的大小。
这一切都很好,除了它会导致边框不绘制(我想这是解释它的一种方式)。
我附上了 2 张图片,您可以看到边框似乎没有绘制(对于 Visual Studio,它不会根据应用程序 BorderStyle 调整大小)
这是我到目前为止的代码:
foreach (Process p in Process.GetProcesses())
{
if (p.MainWindowTitle == "") continue;
if (p.MainWindowTitle.ToLower().Contains("studio"))
{
IntPtr i = p.MainWindowHandle;
RECT r;
GetWindowRect(i, out r);
if (r.Left <= -1608)
SetWindowPos(i, HWND.Top, Screen.AllScreens[1].Bounds.Left + 200, Screen.AllScreens[1].Bounds.Top, Screen.AllScreens[1].Bounds.Width - 200, Screen.AllScreens[1].Bounds.Height, SetWindowPosFlags.SWP_NOACTIVATE);
}
}
正如你所看到的,我只是想在我的第二台显示器上调整和重新定位任何(目前只是 Visual Studio)窗口(在我的第一个显示器的左侧,使用一种骇人听闻的检查:D)