我使用远程桌面从带有Windows XP Professional SP3和一个屏幕的笔记本电脑连接到运行带有两个显示器的Windows 7 Professional的远程PC。
笔记本电脑分辨率大约为1024x768,远程PC上的每台显示器大约为1600x900。
在开始远程桌面会话之前,我将Windows 7 PC的第二台显示器上的所有窗口移动到第一台显示器。 (笔记本电脑和PC都位于同一办公区域。)
远程桌面会话可以工作,但在关闭笔记本电脑上的会话并返回远程Windows 7 PC上工作后,我通常需要重新定位并调整许多窗口的大小以恢复原来的安排。
使用我当前的配置,如何避免上面的“重新定位和调整大小”步骤?
如果笔记本电脑有Windows 7专业版,那有助于解决这个问题吗?
答案 0 :(得分:0)
您应该将其移至超级用户,但自从您在StackOverflow上询问后,您可以实现一个执行您所描述的程序。
在伪代码中:
class WindowPosition {
IntPtr hWnd;
RECT Location;
}
List<WindowPosition> positions = null;
void OnCaptureWindowPositionHotkey() {
positions = new List<WindowPosition>();
EnumWindows(enumStoreWindows, null);
}
void OnResetWindowPositionHotkey() {
EnumWindows(enumStoreWindows, null);
}
void enumSetWindows(IntPtr hwnd, IntPtr obj) {
positions.Add(new WindowPosition() {
hWnd = hwnd,
Location = GetWndLocation(hwnd)
};
}
RECT GetWndLocation(IntPtr hwnd) {
RECT outrect = null;
GetWindowRect(hwnd, out outrect);
return outrect;
}
void enumSetWindows(IntPtr hwnd, IntPtr obj) {
var loc = (from wl in positions
where wl.hWnd == hwnd
select wl).FirstOrDefault();
if (loc == null) return;
SetWindowPos(hwnd, null,
loc.Location.X,
loc.Location.Y,
loc.Location.Width,
loc.Location.Height,
0);
}
其中EnumWindows
,SetWindowPos
和GetWindowRect
都是Win32函数。看到:
http://msdn.microsoft.com/en-us/library/windows/desktop/ms633497(v=vs.85).aspx,http://msdn.microsoft.com/en-us/library/windows/desktop/ms633545(v=vs.85).aspx和http://msdn.microsoft.com/en-us/library/windows/desktop/ms633519(v=vs.85).aspx。