在Windows 10桌面的右鍵菜單中增加一個暗/亮色模式切換并不是很有深意,主要是和IT之家的讀者分享一個技巧。如果愿意選擇捷徑,可以直接看文末的“神秘代碼”。
效果如下:
廢話不多說,直接走流程,不用按部就班,看就行:
一、電腦桌面左下角-搜索-注冊表-打開:
Navigate to: Computer HKEY _ Class _ Root Desktop Background Shell
其次,右鍵-shell new-創(chuàng)建一個新項目-將其命名為AppMode:
3.在新創(chuàng)建的AppMode項中,需要在右側創(chuàng)建四個新的字符串值,即:Icon、MUIVerb、Position和SubCommands。
4.然后依次雙擊New,填入相應的數(shù)據(jù)值:icon的數(shù)值數(shù)據(jù)填充,themcpl.dll,-1。
數(shù)字數(shù)據(jù)填充——多動詞的應用模式
位置的數(shù)字數(shù)據(jù)填寫在底部。
子命令不會被修改。
解釋這里對應于數(shù)字數(shù)據(jù)的四個字符串值的作用:
Icon指定圖標路徑themecpl.dll,-1,MUIVerb指示級聯(lián)菜單組的名稱,Position指定菜單標題位置(分別為頂部、中部和底部)。
子命令代表級聯(lián)菜單。
5.在AppMode下創(chuàng)建一個新的shell項目,并在shell下創(chuàng)建001flyout和002flyout。
同樣,我們只需要在items 001flyout和002flyout的右側創(chuàng)建兩個新的字符串值,即:Icon、MUIVerb和item: command。
六、在001彈出項中,依次雙擊新建并填入相應的數(shù)據(jù)值:
圖標的數(shù)值數(shù)據(jù)填入imageres.dll,-5411。
多動詞的數(shù)字數(shù)據(jù)以亮色模式填充。
修改右側(默認)的數(shù)值數(shù)據(jù)填入REG Add hkcusoftwaremicrosoftwindowscurentversionthemespersonalize/v appsuselightheme/t REG _ DWORD/d 1/f
七、在002彈出項中,依次雙擊新建并填入相應的數(shù)據(jù)值:
圖標的數(shù)值數(shù)據(jù)填入imageres.dll,-5412。
MUIVerb的數(shù)字數(shù)據(jù)以深色模式填充。
修改右側(默認)的數(shù)值數(shù)據(jù)填入REG Add hkcusoftwaremicrosoftwindowscurentversionthemespersonalize/v appsuselightheme/t REG _ DWORD/d 0/f
8.最后,單擊F5查看如下結構:
——分割線。
以上是整個過程,最后附上神秘代碼:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOTDesktopBackgroundShellAppMode]
'icon'='themecpl.dll,-1'
多動詞'='應用模式'
'Position'='Bottom'
'SubCommands'=''
[HKEY_CLASSES_ROOTDesktopBackgroundShellAppModeshell]
[HKEY_CLASSES_ROOTDesktopBackgroundShellAppModeshell01flyout]
'Icon'='imageres.dll,-5411'
多動詞'='亮色模式'
[HKEY_CLASSES_ROOTDesktopBackgroundShellAppModeshell01flyoutcommand]
@='Reg Add HKCUSOFTWAREMicrosoftWindowsCurrentVersionThemesPersonalize /v AppsUseLightTheme /t REG_DWORD /d 1 /f'
[HKEY_CLASSES_ROOTDesktopBackgroundShellAppModeshell02flyout]
'Icon'='imageres.dll,-5412'
多動詞'='黑暗模式'
[HKEY_CLASSES_ROOTDesktopBackgroundShellAppModeshell02flyoutcommand]
@='Reg Add HKCUSOFTWAREMicrosoftWindowsCurrentVersionThemesPersonalize /v AppsUseLightTheme /t REG_DWORD /d 0 /f'
——分割線。
補充:復制神秘代碼,然后新建一個文本文檔,把神秘代碼粘貼進去,然后另存為。reg,并選擇ANSI的最后一點保存代碼,然后雙擊導入桌面右鍵應用模式。注冊。