Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
20
Hide or disable Header from TabGroupPane
posted

hello,

I've the following code:

 <igDock:DocumentContentHost x:Name="centralProcContainer">

<igDock:SplitPane>

 

 

 

 

<igDock:TabGroupPane Name ="tabContainer">

 

 

 

<igDock:ContentPane Name="paneClient" AllowClose="False" AllowDocking="False"

 

 

 

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

 

Parents
  • 54937
    Offline posted

    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.

Reply Children