Is there a way to hide this tab bar?
P.S. Not sure is this question belongs to stackoverflow
Is there a way to hide this tab bar?
P.S. Not sure is this question belongs to stackoverflow
Ok I've done this myself by writing a VS extension. Also switched Title bar and Menu bar to auto-hide. Now at last my VS has a minimalistic view
GitHub
VS gallery
I'm not too sure if this is what you are asking, however, you should be able to just click the "x" in the corner of the tab and it should go away.
You can also look at this past StackOverflow post here that should help you: how to remove visual studio PIN TAB icon (on tabs, obviously)
Clearly it's an overkill, but you can install my Tabs Studio extension and style it to hide tabs:
<Style TargetType="TabsStudio:Tabs" BasedOn="{StaticResource DefaultTabsStyle}">
<Setter Property="Visibility" Value="Collapsed"/>
</Style>