Is there a way to remove tab well?

后端 未结 3 547
萌比男神i
萌比男神i 2021-01-27 16:03

Is there a way to hide this tab bar?

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

相关标签:
3条回答
  • 2021-01-27 16:46

    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)

    0 讨论(0)
  • 2021-01-27 16:57

    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

    0 讨论(0)
  • 2021-01-27 17:03

    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>
    
    0 讨论(0)
提交回复
热议问题