Is there a way to remove tab well?

2020-05-08 08:26发布

问题:

Is there a way to hide this tab bar?

P.S. Not sure is this question belongs to stackoverflow

回答1:

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



回答2:

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)



回答3:

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>