hello,
I've the following code:
<igDock:DocumentContentHost x:Name="centralProcContainer">
<igDock:SplitPane>
<igDock:TabGroupPane Name ="tabContainer">
igDock:SplitPane.RelativeSize="50,50" IsPinned="True" AllowDockingInTabGroup="False"
AllowFloatingOnly="False" AllowPinning="False" AllowInDocumentHost="False"
BorderThickness="0" >
<mdi:MdiContainer Name="MdiContainer"
Background="{Binding ElementName=mainContentView, Path=Background}">
</mdi:MdiContainer>
</igDock:ContentPane>
</igDock:TabGroupPane>
</igDock:SplitPane>
</igDock:DocumentContentHost>
So my question. How can i hide or disable the Header from the TabGroupPane?
thanks
Well I'm still not sure exactly what the other customer wanted but if you simply want the docked split panes in the xamDockManager's Panes collection to fill the available area you can set the LayoutMode property to FillContainer.
Can you give an example of how to achieve the fill mode referenced in the link you provided? I am also looking to implement this behavior.
I'm not sure what you mean - a ContentPane in the DocumentContentHost is displayed as a tabbed document. I'm guessing that you're trying to use it such that it fills the center area and don't really want to use tabbed documents but that functionality is not supported. It will be available in the next release as described here. If you're trying to hide the contentpane itself then you would set its Visibility to collapsed and the pane and tab will not be displayed to the end user.