Hi,
I have a strange problem with docking control:
as you see in following code I have a unpinned RadPane(there are 4 tabs inside the RadPane). I hover mouse over RadPane and it appears.
when I click in TAB1 and click the Button and click TAB2, RadPane hides itself.
please help me to fix it.
thanks.
My code:
<telerik:RadDocking HorizontalAlignment="Stretch">
<telerik:RadSplitContainer MinWidth="300" InitialPosition="DockedRight">
<telerik:RadSplitContainer >
<telerik:RadPaneGroup >
<telerik:RadPane CanFloat="False" CanUserPin="True" CanDockInDocumentHost="False"
x:Name="pane"
CanUserClose="False" Header="PaneHeader"
IsPinned="False" AutoHideWidth="300">
<telerik:RadTabControl>
<telerik:RadTabItem Header="TAB1">
<Grid>
<telerik:RadButton Content="Button"/>
</Grid>
</telerik:RadTabItem>
<telerik:RadTabItem Header="TAB2" IsSelected="True">
<Grid>
<TextBlock Text="Nothing"/>
</Grid>
</telerik:RadTabItem>
<telerik:RadTabItem Header="TAB3">
<Grid>
<TextBlock Text="Nothing"/>
</Grid>
</telerik:RadTabItem>
<telerik:RadTabItem Header="TAB4">
<Grid>
<TextBlock Text="Nothing"/>
</Grid>
</telerik:RadTabItem>
</telerik:RadTabControl>
</telerik:RadPane>
</telerik:RadPaneGroup>
</telerik:RadSplitContainer>
</telerik:RadSplitContainer>
</telerik:RadDocking>