Dragablz TabablzControl 可见性 属性 不工作

Dragablz TabablzControl Visibility property not working

我在我的一个项目中使用 dragablz:TabablzControl,我需要动态地 hide/show 一些选项卡。 事实是控件不尊重 TabItem 的 属性 可见性。 我试过绑定和不绑定,像这样:

<dragablz:TabablzControl Grid.Row="2" BorderThickness="0" FixedHeaderCount="20">

<TabItem Header="Additional Info" Visibility="{Binding ShowAdditionalInfoTab, Converter={StaticResource BooleanToVisibilityConverter}}">
    <controls:AdditionalInfoControl />
</TabItem>

<TabItem Header="Additional Info" Visibility="Collapsed">
    <controls:AdditionalInfoControl />
</TabItem>

</dragablz:TabablzControl>

但是 none 正在工作。改"FixedHeaderCount"不影响结果。

该选项卡始终可见。

有没有其他方法可以达到我需要的结果?

我已经收到了开发团队的回复,我把它留给有同样问题的人。

Yeah, obviously there’s since changes to the standard tab control to support all of the extra features, and currently that’s not supported. You’d have to temporarily remove your hidden item from the source.