Re-enable title bar in Visual Studio 2019

后端 未结 2 1438
南笙
南笙 2020-12-15 16:03

I\'ve downloaded the preview version of Visual Studio 2019 and the title bar is disabled by default.

This doesn\'t work for me as I currently develop C# applications

相关标签:
2条回答
  • 2020-12-15 16:26

    The option can be found under "Preview Features" in Options. No idea why that got into the GA release.

    Just unselect the compact menu option and restart VS.

    0 讨论(0)
  • It appears that some time around March 2019 the option to restore the title bar through a setting in the IDE was restored. I can confirm that the option remains in the latest release and preview versions of Visual Studio as of June 2019.

    Go to:

    Tools > Options > Environment > Preview Features

    and untick

    "Use compact menu and search bar (requires restart)"

    Then click "OK" and restart Visual Studio.


    If the setting gets removed again, it may still be possible to fall back to editing the file CurrentSettings.vssettings. Change:

    <PropertyValue name="IsMinimalVsEnabled">True</PropertyValue>
    

    to

    <PropertyValue name="IsMinimalVsEnabled">False</PropertyValue>
    

    Look for the file in %LOCALAPPDATA%\Microsoft\VisualStudio\16.0_xxxxxxxx\Settings\CurrentSettings.vssettings (where 16.0_xxxxxxxx will be the version you have installed).

    0 讨论(0)
提交回复
热议问题