如何在 Visual Studio 中禁用所有大写菜单标题 [英] How to disable all caps menu titles in Visual Studio

查看:25
本文介绍了如何在 Visual Studio 中禁用所有大写菜单标题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我认为标题是不言自明的.只是想更改 Visual Studio 2012 的外观,不以全部大写字母显示菜单标题.

I assume the title is self explanatory. Just want to change the look of the Visual Studio 2012 not to show menu title in all capital letters.

推荐答案

理查德·班克斯 (Richard Banks) 发布了 关于用于此类调整的注册表项.

Richard Banks posted about a registry key for just such a tweak.

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0\General
DWORD: SuppressUppercaseConversion
Value: 1

在 PowerShell 中,您可以运行它来设置该注册表项,然后大写字母就会消失.

In PowerShell, you can run this to set that registry key and the uppercase goes away.

Set-ItemProperty -Path HKCU:\Software\Microsoft\VisualStudio\11.0\General -Name SuppressUppercaseConversion -Type DWord -Value 1

Visual Studio Express 2012

上述注册表项不会影响 Visual Studio Express 2012 RC.评论FormatC 出现在 Banks 关于 Express 密钥的帖子中.您可以在 Mike Gleason 的回答 中找到该键,或运行以下 PowerShell 命令进行设置.

Visual Studio Express 2012

The above registry key is not the one that will affect Visual Studio Express 2012 RC. A comment by FormatC showed up on Banks post about the key for Express. You can find that key mentioned in Mike Gleason's answer or run the following PowerShell command to set it.

Set-ItemProperty -Path HKCU:\Software\Microsoft\VSWinExpress\11.0\General -Name SuppressUppercaseConversion -Type DWord -Value 1

Visual Studio Express 2012 网页版

Set-ItemProperty -Path HKCU:\Software\Microsoft\VWDExpress\11.0\General -Name SuppressUppercaseConversion -Type DWord -Value 1

Visual Studio 2013

将上述注册表项中的 11.0 替换为 12.0.

将上述注册表项中的 11.0 替换为 14.0.

Replace 11.0 with 14.0 in the registry keys above.

这篇关于如何在 Visual Studio 中禁用所有大写菜单标题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆