2021-05-12 14:32:11
Win10如何自定義Alt-Tab介面邊框的透明度?
2020-07-23 10:28:38
Win10如何自定義Alt-Tab介面邊框的透明度?Alt-Tab是切換視窗的快捷鍵,一些用戶在Win10系統下使用Alt-Tab組合鍵切換視窗時,發現Alt-Tab介面邊框的透明度不夠,那麼Alt-Tab介面邊框的透明度要如何設定呢?別著急,下面小編給大家分享Win10自定義Alt-Tab介面邊框透明度的操作方法。
Win10如何自定義Alt-Tab介面邊框的透明度?
方法一:
1、點選Windows+R組合鍵鍵,鍵入regedit,然後按Enter鍵;
2、在左側依次展開HKEY_CURRENT_USER SOFTWARE Microsoft Windows CurrentVersion Explorer,右鍵選擇【新建】-【項】,將該名稱命名為MultitaskingView;
3、右鍵單擊MultitaskingView,然後選擇【新建】-【項】,將該項命名為AltTabViewHost;
4、右鍵單擊AltTabViewHost,然後選擇新建》 Dword(32位元)值,命名為:Grid_backgroundPercent ;
5、雙擊開啟Grid_backgroundPercent,輸入需要設定的透明度(以百分比設定值。 0表示100%透明度,100%無透明度。);
6、在AltTabViewHost上單擊右鍵,然後選擇新建》 Dword(32位元)值,將其命名為BackgroundDimmingLayer_percent,以百分比設定值,100%為完全調光。
方法二:
1、直接將下面程式碼複製到記事本中;
- 01Windows Registry Editor Version 5.00
- 02; Set transparency of Alt-Tab interface between 00000000 (full transparency) and 000000100 (no transparency)
- 03[HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersionExplorerMultitaskingViewAltTabViewHost]
- 04"Grid_backgroundPercent"=dword:00000100
- 05; Set whether windows are shown behind the Alt-Tab interface. 00000000 is no, 00000001 is yes
- 06[HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersionExplorerMultitaskingViewAltTabViewHost]
- 07"Wallpaper"=dword:00000001
- 08; Sets the dim percentage of the background, 00000000 is no dimming, 00000100 is full dimming
- 09[HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersionExplorerMultitaskingViewAltTabViewHost]
- 10"BackgroundDimmingLayer_percent"=dword:000000100
Windows Registry Editor Version 5.00
; Set transparency of Alt-Tab interface between 00000000 (full transparency) and 000000100 (no transparency)
[HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersionExplorerMultitaskingViewAltTabViewHost]
"Grid_backgroundPercent"=dword:00000100
; Set whether windows are shown behind the Alt-Tab interface. 00000000 is no, 00000001 is yes
[HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersionExplorerMultitaskingViewAltTabViewHost]
"Wallpaper"=dword:00000001
; Sets the dim percentage of the background, 00000000 is no dimming, 00000100 is full dimming
[HKEY_CURRENT_USERSOFTWAREMicrosoftWindowsCurrentVersionExplorerMultitaskingViewAltTabViewHost]
"BackgroundDimmingLayer_percent"=dword:000000100
相關文章