Hide auto-hide tab strip

Docking/MDI for Avalonia Forum

Posted 17 days ago by John Smith
Version: 25.2.1
Avatar

I want auto-hide to act like SplitView, but with Pane sizeable by user. I tried to use auto-hide tool window as Pane, but Tab Strip is always visible. Is there any way to hide it?

Comments (1)

Posted 16 days ago by Actipro Software Support - Cleveland, OH, USA
Avatar

Hello,

There aren't currently any options to hide the auto-hide tabstrip.  You might be able to inject the behavior you're looking for if you add something like this to your Application.Resources:

xmlns:dockingPrimitives="using:ActiproSoftware.UI.Avalonia.Controls.Docking.Primitives"
...
<ControlTheme x:Key="{x:Type dockingPrimitives:AutoHideTabStrip}" TargetType="dockingPrimitives:AutoHideTabStrip">
	<Setter Property="IsVisible" Value="False" />
</ControlTheme>

That should hide all the auto-hide tabstrips.  So note there would be no way for an end user to locate or show auto-hidden tool windows if you add that, unless you provide some external mechanism to do so.


Actipro Software Support

Add Comment

Please log in to a validated account to post comments.