Visual Studio에서 모든 대문자 메뉴 제목을 비활성화하는 방법
제목이 자명하다고 가정합니다. 메뉴 제목을 모두 대문자로 표시하지 않도록 Visual Studio 2012의 모양을 변경하고 싶습니다.
Richard Banks는 그러한 조정을위한 레지스트리 키 에 대해 게시했습니다 .
Visual Studio 2012 (전체)
HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0\General
DWORD: SuppressUppercaseConversion
Value: 1
PowerShell에서이를 실행하여 해당 레지스트리 키를 설정할 수 있으며 대문자는 사라집니다.
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 의 의견 은 Express의 키에 대한 Banks 게시물에 나타났습니다. Mike Gleason의 답변에 언급 된 키를 찾 거나 다음 PowerShell 명령을 실행하여 설정할 수 있습니다.
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
비주얼 스튜디오 2013
교체 11.0
로 12.0
위의 레지스트리 키입니다.
Visual Studio 2015 개발자 미리보기
교체 11.0
로 14.0
위의 레지스트리 키입니다.
나는 당신을 위해 이것을 할 확장을 작성했습니다.
Visual Studio 갤러리에서 다운로드 할 수 있습니다.
또한 주 메뉴를 모두 숨길 수 있으며 IE에서와 같이 마우스를 올리거나 Alt 키를 누를 때만 표시되도록 할 수 있습니다.
수년 후 Microsoft는이 기능에 대한 마음을 바 꾸었습니다. Visual Studio 2013 업데이트 3 RC부터 대 / 소문자를 혼합하여 변경하는 옵션이 추가되었습니다. 도구-> 옵션-> 환경-> 일반-> 메뉴 모음에서 대문자 끄기
분명히 이것은 VS 2012 용이 아닙니다. 하지만 앞으로이 옵션이있을 것입니다.
다음 은 Microsoft의 Brian Harry가 보낸 알림입니다.
혼합 된 케이스 메뉴 – 나는 이것에 대해 약간의 피드백을받을 것이라는 것을 알고 있습니다. :) 이것은 "모든 대문자"메뉴를 변경하기 위해 VS 2012 이후 VS 사용자 기반의 보컬 부분이 오랫동안 요청한 것입니다. VS 2013 업데이트 3에서는 모든 대문자 또는 대소 문자 혼합을 표시할지 여부를 제어하는 도구 –> 옵션 설정을 추가했습니다. 기본값은 여전히 모두 대문자이지만 변경하는 경우 업그레이드시 유지되며 VS Online 로밍 설정 기능을 사용하여 IDE 인스턴스에서 로밍됩니다 (VS에 로그인하여 사용자가 누구인지 알 수있는 경우).
그리고
Windows 데스크톱 용 Visual Studio Express 2012
HKEY_CURRENT_USER\Software\Microsoft\WDExpress\11.0\General
DWORD: SuppressUppercaseConversion
Value: 1
MS가 키 이름에서 Visual Studio에 대한 언급을 생략 한 이유는 그러한 언급이 누군가 키를 식별하는 데 도움이 될 수 있기 때문이라고 생각합니다. :)
VS Commands 확장은 이것을 할 수 있으며 갤러리에서 가장 인기있는 것 중 하나입니다. 체크 아웃 할 가치가 있습니다!
http://visualstudiogallery.msdn.microsoft.com/a83505c6-77b3-44a6-b53b-73d77cba84c8?SRC=VSIDE
Visual Studio 2015 Community Edition does not respond to the SuppressUppercaseConversion registry value.
The answer is to enable the option boflynn identified:
• Tools -> Options -> Environment -> General -> Apply title case styling to menu bar
In my case that setting was not on by default, perhaps since I ported my VS 2013 settings.
-Noel
For express use:
HKEY_CURRENT_USER\Software\Microsoft\VSWinExpress\11.0\GeneralSuppressUppercaseConversion
Credit to FormatC
Now that Visual Studio 2015 has changed the default back to Title Case, for those crazies like me who had gotten used to ALL CAPS, you can change it back by disabling the following option:
- Tools -> Options -> Environment -> General -> Apply title case styling to menu bar
I have been using the following reg files to enable/disable the lowercasing in Visual Studio 2012 and Visual Studio 2013:
http://erwinmayer.com/dl/VS2012_ALLCAPS_Toggle.zip http://erwinmayer.com/dl/VS2013_ALLCAPS_Toggle.zip
Just double click on VS201x_ALLCAPS_Disable.reg
inside the archive to disable all caps menu titles, and VS201x_ALLCAPS_Enable.reg
to re-enable them.
You can easily edit the reg files before with a text editor to see what they contain.
For Visual Studio 2012 Express for Windows Phone, use
HKEY_CURRENT_USER\Software\Microsoft\VPDExpress\11.0\General\SuppressUppercaseConversion
"VSCommands for Visual Studio 2012"가이를위한 최상의 옵션 이라고 생각 합니다.
여기에서이 플러그인을 가져옵니다 : http://visualstudiogallery.msdn.microsoft.com/a83505c6-77b3-44a6-b53b-73d77cba84c8
참고 URL : https://stackoverflow.com/questions/10859173/how-to-disable-all-caps-menu-titles-in-visual-studio
'code' 카테고리의 다른 글
외래 키 제한 테이블을 자르는 방법은 무엇입니까? (0) | 2020.10.03 |
---|---|
예 : 메시징을 사용한 활동과 서비스 간의 통신 (0) | 2020.10.03 |
StringBuilder를 어떻게 지우거나 비울 수 있습니까? (0) | 2020.10.03 |
사전 매핑 반전 / 반전 (0) | 2020.10.03 |
git에서 별칭 명령을 어떻게 수행합니까? (0) | 2020.10.03 |