Reputation: 8494
Is there a way to hide this tab bar?
P.S. Not sure is this question belongs to stackoverflow
Upvotes: 1
Views: 1030
Reputation: 8494
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
Upvotes: 5
Reputation: 27940
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>
Upvotes: 1