Poma
Poma

Reputation: 8494

Is there a way to remove tab well?

Is there a way to hide this tab bar?

enter image description here

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

Upvotes: 1

Views: 1030

Answers (2)

Poma
Poma

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

enter image description here

GitHub

VS gallery

Upvotes: 5

Sergey Vlasov
Sergey Vlasov

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

Related Questions