Home > Mobile >  Visual Studio 2019 - Hide dropdowns underneath tabs
Visual Studio 2019 - Hide dropdowns underneath tabs

Time:11-21

When I open a .cs file in Visual Studio 2019, underneath the tabs I have open are three dropdowns. They show the following tooltip messages when hovered over:

  • Use the dropdown to view other and switch to other projects this file may belong to

  • Use the drop to view and navigate to other items in this file

  • Use the drop to view and navigate to other items in this file

Is there anyway to remove these dropdowns? I don't use them and I feel like they get in the way of what tabs I have open. I'm new to Visual Studio and am trying to make it look the way I like.

CodePudding user response:

Those three 'dropdowns' comprise the "Navigation Bar" and enabling/disabling its display is language-specific.

For your C# (.cs) files, you can disable the display as follows. From the "Tools" menu, select the "Options" command. Then, in the displayed pop-up, navigate to the "Text Editor" ... "C#" .. "General" node in the left-hand pane and then, in the right-hand pane, uncheck the "Navigation bar" checkbox:

enter image description here

To disable that bar for all languages in which it is supported, uncheck the control of the same name displayed when you have navigated to the "Text Editor" ... "All Languages" ... "General" node of the tree in the left-hand pane:

enter image description here

  • Related