This question is locked. New answers and comments are not allowed.
Hi,
I have a issue in loading the RadDocking control [Version 2009.3.1103.1030 ]. Initially with the older version DLL, it worked fine , but when I migrated to the newer version, this problem arise . Moreover I am not able to trace the problem, as it never points in XAML or in the code behind for the ERRORS. Its just breaks. Here is the XAML :
What am I missing in here. Please guide.
Thank You,
Sandeep M Shetty.
I have a issue in loading the RadDocking control [Version 2009.3.1103.1030 ]. Initially with the older version DLL, it worked fine , but when I migrated to the newer version, this problem arise . Moreover I am not able to trace the problem, as it never points in XAML or in the code behind for the ERRORS. Its just breaks. Here is the XAML :
| <UserControl |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| xmlns:controls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls" |
| xmlns:data="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data" |
| xmlns:telerikDocking ="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Docking"> |
| <Grid x:Name="LayoutRoot"> |
| <Border Grid.Row="0"> |
| <Grid x:Name="uxMainGrid" MinHeight="430" Width="1100"> |
| <Grid.Resources> |
| <ControlTemplate x:Name="uxContentControlWithFooterControlTemplate" |
| x:Key="ContentControlWithFooterControlTemplate" |
| TargetType="ContentControl"> |
| <Grid> |
| <Grid.RowDefinitions> |
| <RowDefinition Height="*"/> |
| <RowDefinition Height="50"/> |
| </Grid.RowDefinitions> |
| <ContentPresenter x:Name="uxContentControlWithFooterControlPresenter" Content="{TemplateBinding Content}" Grid.Row="0" /> |
| <StackPanel Margin="5,0,5,5" Grid.Row="1"> |
| <StackPanel.Background> |
| <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0"> |
| <GradientStop Color="#FFA3AEB9" Offset="0"/> |
| <GradientStop Color="#FF8399A9" Offset="0.375"/> |
| <GradientStop Color="#FF718597" Offset="0.375"/> |
| <GradientStop Color="#FF617584" Offset="1"/> |
| </LinearGradientBrush> |
| </StackPanel.Background> |
| <TextBlock Padding="3" FontWeight="Bold" Text="xxxxxxxx" TextWrapping="Wrap"/> |
| </StackPanel> |
| </Grid> |
| </ControlTemplate> |
| </Grid.Resources> |
| <telerikDocking:RadDocking Margin="10" Grid.Row="0"> |
| <telerikDocking:RadSplitContainer ScrollViewer.HorizontalScrollBarVisibility="Auto" Background="White" Orientation="Vertical" InitialPosition="DockedLeft" Height="410" Width="1040"> |
| <telerikDocking:RadPaneGroup> |
| <telerikDocking:RadPane x:Name="uxSchedule" Header="Schedule" Title="XXXXXXXXXXXXXX"> |
| <ContentControl Template="{StaticResource ContentControlWithFooterControlTemplate}" x:Name="uxContentControlWithFooterTelerikControlTemplate"> |
| <data:DataGrid Grid.Row="0"> |
| --------------- |
| --------------- |
| </data:DataGrid> |
| </ContentControl> |
| </telerikDocking:RadPane> |
| </telerikDocking:RadPaneGroup> |
| <telerikDocking:RadPaneGroup telerikDocking:ProportionalStackPanel.RelativeSize="30, 30"> |
| <telerikDocking:RadPane Title="XXXXX"/> |
| </telerikDocking:RadPaneGroup> |
| <telerikDocking:RadPaneGroup telerikDocking:ProportionalStackPanel.RelativeSize="30, 30"> |
| <telerikDocking:RadPane Title="XXXXX"/> |
| </telerikDocking:RadPaneGroup> |
| </telerikDocking:RadSplitContainer> |
| </telerikDocking:RadDocking> |
| </Grid> |
| </Border> |
| </Grid> |
| </<UserControl> |
What am I missing in here. Please guide.
Thank You,
Sandeep M Shetty.