This question is locked. New answers and comments are not allowed.
I need to remove the light-blue inner border inside the container of RadPaneGroupDocumentHost. And I also would like to change the white background for the content in the container. But I need to do this with the rest of Metro theme style applied to the component. Is there a way to do it? I'm using RadControls Q3 2011 and Expression Blend.
I have the following code with a picture attached:
<telerik:RadDocking telerik:StyleManager.Theme="Metro" Width="300" Height="200" Margin="84,200,256,80" Background="White">
<telerik:RadDocking.DocumentHost>
<telerik:RadSplitContainer>
<telerik:RadPaneGroup>
<telerik:RadPane Header="Description">
<ScrollViewer BorderBrush="{x:Null}" BorderThickness="0" Background="#FFB18989" Margin="0"/>
</telerik:RadPane>
<telerik:RadPane Header="NonDraggable" CanFloat="False">
<TextBlock TextWrapping="Wrap" Text="This pane cannot be dragged, because it has its property CanFloat set 'False'."/>
</telerik:RadPane>
</telerik:RadPaneGroup>
</telerik:RadSplitContainer>
</telerik:RadDocking.DocumentHost>
</telerik:RadDocking>
I have the following code with a picture attached:
<telerik:RadDocking telerik:StyleManager.Theme="Metro" Width="300" Height="200" Margin="84,200,256,80" Background="White">
<telerik:RadDocking.DocumentHost>
<telerik:RadSplitContainer>
<telerik:RadPaneGroup>
<telerik:RadPane Header="Description">
<ScrollViewer BorderBrush="{x:Null}" BorderThickness="0" Background="#FFB18989" Margin="0"/>
</telerik:RadPane>
<telerik:RadPane Header="NonDraggable" CanFloat="False">
<TextBlock TextWrapping="Wrap" Text="This pane cannot be dragged, because it has its property CanFloat set 'False'."/>
</telerik:RadPane>
</telerik:RadPaneGroup>
</telerik:RadSplitContainer>
</telerik:RadDocking.DocumentHost>
</telerik:RadDocking>