在 Visual Studio 2013 中,Microsoft 再次将大写的菜单作为默认设置。
这些可以修改为Sentence Case吗?
是的 - 在新的 Visual Studio 2013 (如 VS 2012)中,MS 加强了他们的设计决策,将所有大写菜单项设为默认值。恢复菜单样式的方法与之前讨论过的 Visual Studio 2012 使用的方法几乎相同。
更新 (在 Visual Studio 2013 更新 4 之后)
从 Visual Studio 2013 Update 4 开始,您可以进入 工具 > 选项 > 环境 并取消选中 菜单栏中的关闭大写字母
在 Visual Studio 2013 更新 4 之前:
如果要返回“旧式”菜单,则需要创建特定的注册表项。
第一个变体 :由于 Package Manager Console 是Powershell,选择菜单选项 TOOLS / Library Package Manager / Package Manager Console 并进入并运行
Set-ItemProperty -Path HKCU:\Software\Microsoft\VisualStudio\12.0\General -Name SuppressUppercaseConversion -Type DWord -Value 1 (作为单行)。
Set-ItemProperty -Path HKCU:\Software\Microsoft\VisualStudio\12.0\General -Name SuppressUppercaseConversion -Type DWord -Value 1
第二个变体 :打开命令提示符(win+ r,,,cmd)enter并输入并运行
win
r
cmd
enter
REG ADD HKCU\Software\Microsoft\VisualStudio\12.0\General /v SuppressUppercaseConversion /t REG_DWORD /d 1 (作为单行)。
REG ADD HKCU\Software\Microsoft\VisualStudio\12.0\General /v SuppressUppercaseConversion /t REG_DWORD /d 1
第三个变体 :手动更改注册表值,打开regedit并导航到
regedit
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\12.0\General
然后,创建(右键单击):
DWORD value
内容为
SuppressUppercaseConversion
并将其设置为
1
关闭 regedit.exe 就完成了。
第四种变体 :至少一个 VS 扩展( Visual Studio 2013 的 VSCommands )已经发布,使您(除其他外)能够通过VS 2013 中的 配置菜单切换菜单样式。
您也可以将其设置为 全小写 项目(即恕我直言,nice):
切换到 Sentence Case (与使用 SuppressUppercaseConversion 得到的略有不同:SQL 菜单被重命名为 Sql)
或 完全隐藏它 (并让它出现在 ALT 键按下或鼠标悬停上)