显示/隐藏Windows资源管理器左侧“ treeview”的热键


17

当前,treeview可以在Windows资源管理器的左侧进行切换,我们可以使用:组织-布局-导航窗格,如下图所示。

我经常这样做,并希望通过热键快速切换。如果您知道怎么做,请分享。 替代文字

Answers:


10

这是一个AutoHotKey脚本。⊞ Win+ A切换导航窗格。

/*
Author:  
Date:    
Contact: 
*/

#NoTrayIcon
#Persistent
#NoEnv
#SingleInstance, Force

#IfWinActive ahk_class CabinetWClass
#a::
Send !d{tab}{tab}{enter}ln


3

我在这里提供Windows 8的解决方案。

在文件浏览器中,首先按Alt(不按住组合键)。
然后按VN
最后按Space


这对我来说很好。要针对非英语os版本进行拼写,请执行以下操作:alt-视图-导航-导航区域
TaW 2015年

1

使用Autohotkey将F8分配为面板交流发电机,这对我有用:

#IfWinActive ahk_class CabinetWClass
~F8::
RegRead, NavigationPane_Status, HKEY_CURRENT_USER, SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer, PageSpaceControlSizer
If NavigationPane_Status = a700000001000000000000000a050000
RegWrite, REG_BINARY, HKEY_CURRENT_USER, SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer, PageSpaceControlSizer, a00000000000000000000000ec030000
Else
RegWrite, REG_BINARY, HKEY_CURRENT_USER, SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Modules\GlobalSettings\Sizer, PageSpaceControlSizer, a700000001000000000000000a050000
WinGetClass, eh_Class,A
If (eh_Class = “#32770” OR A_OSVersion = “WIN_VISTA”)
Send, {F5}
Else PostMessage, 0x111, 28931,,, A
Send, !{Up}
Send, {Backspace}
Return
#IfWinActive

通过将此文件编译为可执行文件,并使用添加到资源管理器工具栏中的带有可配置按钮的几个程序之一,可以将此脚本用作一键式热键。同样,在其他面板中,“预览”和“详细信息”分别分配了Alt + P和Alt + Shift + P。


0

在按原样隐藏“导航窗格”之后(我正在用西班牙语翻译,不知道英语中的确切字词)

工具>文件夹选项>请参阅>应用到所有文件夹

下次打开窗口时,它不会显示导航窗格

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.