Tabs Studio Blog (organizing Visual Studio document tabs)

June 12, 2011

Tabs Studio v2.4.0 released

Filed under: Releases — Sergey Vlasov @ 3:39 pm

Tabs Studio v2.4.0 released – disabled animation for very small tab movement, disabled tab movement animation when the SingleRow add-in is used.

Download link: Tabs Studio v2.4.0.

June 11, 2011

Vertical scrollbar for the separate tabs window

Filed under: Uncategorized — Tags: — Sergey Vlasov @ 9:53 am

When using the separate tabs window in stack mode, sometime you can open more tabs than fit in the docked window. One possible solution is to add a vertical scrollbar to scroll through the windows:

Tabs window with a vertical scrollbar

Tabs window with a vertical scrollbar


The following style adds ScrollViewer with vertical scroll bar visibility set to Auto, i.e. it is visible only when tabs don’t fit without scrolling:

<Style TargetType="TabsStudio:TabsHost" BasedOn="{StaticResource DefaultTabsHostStyle}">
  <Setter Property="Template">
    <Setter.Value>
      <ControlTemplate TargetType="{x:Type TabsStudio:TabsHost}">
        <ScrollViewer HorizontalScrollBarVisibility="Disabled"
                         VerticalScrollBarVisibility="Auto"
                         Focusable="False">
          <Grid>
            <Rectangle Width="{TemplateBinding Width}"
                       Height="{TemplateBinding Height}"
                       Fill="{TemplateBinding Background}"/>
            <ContentPresenter/>
          </Grid>
        </ScrollViewer>
      </ControlTemplate>
    </Setter.Value>
  </Setter>
</Style>

June 10, 2011

Tabs Studio v2.3.9 released

Filed under: Releases — Sergey Vlasov @ 7:02 am

Tabs Studio v2.3.9 released:

  • Reduced tab movement is the Stable tabs layout.
  • Improved tab movement animation.
  • Enabled the Animate tab movement option by default.
  • Changed the default TabsAnimationDuration property value from 0.4 s to 0.3 s.
  • Fixed VS 2010 intellisense stops working when switching tabs with a suggestions list active.

Download link: Tabs Studio v2.3.9.

Blog at WordPress.com.