Answers:
好吧,我怀疑这是否真的是您要寻找的答案,但是在Windows 7上,您可以将其保存为Powershell脚本:
$dllInfo = '[DllImport("user32.dll")] public static extern bool ShowWindowAsync(IntPtr hWnd, int nCmdShow);'
Add-Type -MemberDefinition $dllInfo -name NativeMethods -namespace Win32
foreach($proc in Get-Process){
$hwnd = $proc.MainWindowHandle
# Restore window
[Win32.NativeMethods]::ShowWindowAsync($hwnd, 4) | Out-Null
}
然后绑定一个密钥以运行该脚本。
使用WinKey+ Shift+ M将最小化的窗口还原到桌面。
使用WinKey+ Up Arrow最大化当前窗口。
使用WinKey+ Left Arrow最大化窗口左侧的屏幕。
使用WinKey+ Right Arrow最大化窗口右侧的屏幕。
来源。
Windows Task Manager
(Ctrl+ Shift+ Esc)。Applications
选择了选项卡。Windows
,然后选择Maximize
。这将最大化所有窗口,而不管其当前状态如何。
如果按WinKey+ D 再次,它会恢复所有窗口返回到以前的状态,你按下之前WinKey+ D的第一次。在Windows 7中工作。
这不是1键,但是比它看起来要快。如果您有AUTOHOTKEY,以为您可以用一把钥匙来做,但是我没有打扰。无论如何:
请注意,与您在某些帖子中看到的不同,windows-shift-M不会最大化所有内容,而是“撤消先前的最小化所有内容”,即,窗口返回到它们之前的状态