We use RadDocking in our application to show a taskbar on the left and a work area on the right. The XAML for the shell looks like this.
In the attached screenshot there appears to be an empty header on the document pane and a thick blue border (blue because of the Telerik Windows8 Theme we use). I have marked them both with a red square.
How can I get rid of them? I don't want the border and the header to be displayed.
Regards,
Peter
<Grid> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition Width="*" /> </Grid.ColumnDefinitions>
<ContentControl Grid.Row="0" prism:RegionManager.RegionName="{x:Static pll:RegionNames.BannerRegion}" VerticalAlignment="Top" /> <telerikDocking:RadDocking Grid.Row="1" Margin="2"> <telerikDocking:RadSplitContainer Orientation="Vertical" InitialPosition="DockedLeft" MinWidth="300"> <telerikDocking:RadPaneGroup> <telerikDocking:RadPane CanUserClose="False" CanFloat="False" Header="{x:Static resources:Resources.TaskBarPaneHeaderText}" ContextMenuTemplate="{x:Null}"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="*" /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <ContentControl Grid.Row="0" prism:RegionManager.RegionName="{x:Static pll:RegionNames.TaskBarRegion}" /> <ContentControl Grid.Row="1" VerticalAlignment="Bottom" HorizontalAlignment="Left" Height="300" Width="400" prism:RegionManager.RegionName="{x:Static pll:RegionNames.FooterRegion}" /> </Grid> </telerikDocking:RadPane> </telerikDocking:RadPaneGroup> </telerikDocking:RadSplitContainer> <telerikDocking:RadDocking.DocumentHost> <telerikDocking:RadSplitContainer> <telerikDocking:RadPaneGroup> <telerik:RadDocumentPane CanUserPin="False" CanUserClose="False" CanFloat="False" PaneHeaderVisibility="Hidden" TitleTemplate="{x:Null}" ContextMenuTemplate="{x:Null}"> <Grid> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="Auto" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <ContentControl Grid.Row="0" Margin="2,2,2,2" prism:RegionManager.RegionName="{x:Static pll:RegionNames.MenuBarRegion}" /> <ContentControl Grid.Row="1" Margin="2,2,2,6" prism:RegionManager.RegionName="{x:Static pll:RegionNames.BreadCrumbRegion}" /> <ContentControl Grid.Row="2" Margin="2,2,2,2" prism:RegionManager.RegionName="{x:Static pll:RegionNames.WorkSpaceRegion}" /> </Grid> </telerik:RadDocumentPane> </telerikDocking:RadPaneGroup> </telerikDocking:RadSplitContainer> </telerikDocking:RadDocking.DocumentHost> </telerikDocking:RadDocking></Grid>In the attached screenshot there appears to be an empty header on the document pane and a thick blue border (blue because of the Telerik Windows8 Theme we use). I have marked them both with a red square.
How can I get rid of them? I don't want the border and the header to be displayed.
Regards,
Peter