Tabs Studio v2.5.0 released: added basic support for Visual Studio 11 Developer Preview, fixed uninstallation of CloseAllButThisTab and EmailSupport commands.
Download link: Tabs Studio v2.5.0.
Tabs Studio v2.5.0 released: added basic support for Visual Studio 11 Developer Preview, fixed uninstallation of CloseAllButThisTab and EmailSupport commands.
Download link: Tabs Studio v2.5.0.
I’ve added basic support for Visual Studio 11 Developer Preview – all tabs functionality that was available in VS 2010 is now available in VS 11.
The new preview tab is displayed as a normal tab, but you can see the blue under line when it is selected. To manually promote this tab you can use the Window menu and the keyboard shortcut (btw this screenshot was made on Windows 8):
I don’t know how useful the preview tab will be. It can be turned off in Visual Studio options. On the other hand, floating tab groups are definitely useful and I will try my best to support them in a next release.
I noticed one new problem in VS 11 – tabs in a separate window can get light grey background inheriting style from a Visual Studio control up in the tree. To work around this, use the following custom style (it is the same example style that disables blue inactive tab background on mouse over):
<Style TargetType="TabsStudio:Tab" BasedOn="{StaticResource DefaultTabStyle}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TabsStudio:Tab}">
<Border Background="{TemplateBinding Background}" Padding="5,1,5,1"
BorderThickness="1,1,1,0" BorderBrush="Gray">
<ContentPresenter Name="Content" ContentSource="Header"
HorizontalAlignment="{Binding Path=HorizontalContentAlignment,
RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
Download link: Tabs Studio v2.5.0.
Visual Studio 11 Developer Preview was released this week:
Tabs can be pinned now and remain always visible – in the same row with normal tabs, in a separate row above normal tabs and in several rows above normal tabs:
Documents opened indirectly, e.g. when you hit a breakpoint in a new file, are displayed in a special preview tab. When you hit a next breakpoint in another new file, the preview tab displays the new file and “forgets” about the previous one. Thus reducing the number of open documents:
Floating documents can be grouped in a separate window and have tab groups within this separate window:
Several self-explanatory options are available to customize tabs and windows behavior:
I’ve managed to run Tabs Studio in the new IDE, but need more time to make a proper release:
Tabs Studio v2.4.5 released: added the Close tooltip to the close tab button, fixed occasional change of selected extension in a tab in Visual Studio 2010 after switching to the full screen mode or starting a debug session.
Download link: Tabs Studio v2.4.5.
Tabs Studio v2.4.2 released: unified tab layouts to Horizontal and Vertical, added tab movement animation support for the Vertical tabs layout.
Download link: Tabs Studio v2.4.2.
After the introduction of the Stable tabs layout, Standard and Wrap became obsolete and I’ve finally removed them. I’ve also renamed Stable to Horizontal and Stack to Vertical:
Download link: Tabs Studio v2.4.2.
Tabs Studio v2.4.1 released:
Download link: Tabs Studio v2.4.1.
I’ve added the ability to export and import Tabs Studio settings for backup purposes and to copy Tabs Studio settings to another computer:
Tabs Studio keeps separate settings for VS 2010, VS 2008 and SSMS. If you use several products, export saves all settings and the additional dialog lets you select which settings you want to import:
Settings are stored in a .tssettings zip file and mirror the directory structure of settings in “c:\Users\[username]\AppData\Roaming\Sergey Vlasov”.
Download link: Tabs Studio v2.4.1.
If you often work on different parts of an application with different groups of document tabs opened, you may find my new Favorite Documents extension helpful:
Favorite Documents lets you create links to frequently used code files and then quickly open them as a group or individually from the Favorites menu in Visual Studio 2010.
Home page: Favorite Documents.
Direct download link: Favorite Documents v1.0.
I’ve added the ability to highlight tabs with different colors from Tabs Studio context menu:
<Style TargetType="TabsStudio:TabInternals" BasedOn="{StaticResource DefaultTabInternalsStyle}">
<Style.Triggers>
<DataTrigger Binding="{Binding Path=(TabsStudioMarker:Properties.HighlightIndex),
RelativeSource={RelativeSource AncestorType=TabsStudio:Tab}}" Value="1">
<Setter Property="Background">
<Setter.Value>
<LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
<GradientStop Color="Transparent" Offset="0.9"/>
<GradientStop Color="Green" Offset="0.9"/>
</LinearGradientBrush>
</Setter.Value>
</Setter>
</DataTrigger>
</Style.Triggers>
</Style>
In this Marker update I’ve also removed a small gradient transition in underline, fixed occasional loss of first tab highlighting after loading a solution in VS 2010, slightly changed highlight commands placement in the context menu.
Download link: Marker v1.0.4.
Theme: Shocking Blue Green. Blog at WordPress.com.