This question is locked. New answers and comments are not allowed.
Hi,
I am having an issue with SL3 latest internal release dlls version 2009.2.724.1020
Telerik.Windows.Controls.dll
Telerik.Windows.Controls.Docking.dll
Telerik.Windows.Controls.Navigation.dll
When i unpin the RadPane, the default behavior is expected to move the RadPane standing vertically on the side bar. Instead it stands horizontally on the side bar.
Then i referenced the old dlls version 2009.1.622.1020 in my project and the docking worked as expected.
Will appreciate if you could resolve this issue and confirm asap.
Thanks,
Tushar
MyXAML:
I am having an issue with SL3 latest internal release dlls version 2009.2.724.1020
Telerik.Windows.Controls.dll
Telerik.Windows.Controls.Docking.dll
Telerik.Windows.Controls.Navigation.dll
When i unpin the RadPane, the default behavior is expected to move the RadPane standing vertically on the side bar. Instead it stands horizontally on the side bar.
Then i referenced the old dlls version 2009.1.622.1020 in my project and the docking worked as expected.
Will appreciate if you could resolve this issue and confirm asap.
Thanks,
Tushar
MyXAML:
| <UserControl x:Class="MyDockApp2.MainPage" |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| xmlns:radDock="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Docking"> |
| <Grid x:Name="LayoutRoot"> |
| <radDock:RadDocking> |
| <radDock:RadDocking.DocumentHost> |
| <radDock:RadSplitContainer x:Name="_docHost" MinWidth="600" MinHeight="600"> |
| <radDock:RadPaneGroup> |
| <radDock:RadDocumentPane Header="Document 1" Title="Content" Margin="2,0" CanUserClose="False"> |
| <TextBlock TextWrapping="Wrap" |
| Text="This is the Content section." /> |
| </radDock:RadDocumentPane> |
| </radDock:RadPaneGroup> |
| </radDock:RadSplitContainer> |
| </radDock:RadDocking.DocumentHost> |
| <radDock:RadSplitContainer x:Name="_navContainer" Orientation="Vertical" InitialPosition="DockedLeft"> |
| <radDock:RadPaneGroup x:Name="radAppGroup"> |
| <radDock:RadPane x:Name="_navTop" Header="Explorer" CanUserClose="False" > |
| <TextBlock TextWrapping="Wrap" |
| Text="This is the Explorer section." /> |
| </radDock:RadPane> |
| </radDock:RadPaneGroup> |
| <radDock:RadPaneGroup x:Name="radActGroup"> |
| <radDock:RadPane x:Name="_navCenter" Header="Utilities" CanUserClose="False"> |
| <TextBlock TextWrapping="Wrap" |
| Text="This is the Utilities section." /> |
| </radDock:RadPane> |
| </radDock:RadPaneGroup> |
| <radDock:RadPaneGroup x:Name="radScoreCardGroup"> |
| <radDock:RadPane x:Name="_navBottom" Header="Current Health" CanUserClose="False"> |
| <TextBlock TextWrapping="Wrap" |
| Text="This is the Current Health section." /> |
| </radDock:RadPane> |
| </radDock:RadPaneGroup> |
| </radDock:RadSplitContainer> |
| </radDock:RadDocking> |
| </Grid> |
| </UserControl> |