
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?
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?
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.
Please log in to a validated account to post comments.