RadDocking, VS 2010, WPF, C#, non web, Q3 2009 WPF,
I can't get any raddocks to run after compiling, in VS 2010
-- I have it referenced and the xmlns: ref , I copied from sample code. Split Containers.
-- Intellisense works in my XAML for all of the raddocking classes
-- The WPF Samples work on my system, running them from the start menu,
-- The Docking panes render in VS 2010 dev/code view.
-- I have 'Telerik.Windows.Controls.RadDocking' referenced but I don't have rad docking items in my toolbar..
I get the following error.. when the UserControl (Which has xaml reference to the raddocking) is added as a child into a stackpanel
Cannot find type 'Telerik.Windows.Controls.RadDocking'. The assembly used when compiling might be different than that used when loading and the type is missing. Error at object 'System.Windows.Controls.Grid' in markup file "my xaml file"
I can give you link to run the WPF app and see detailed stack trace.. but I can't post the link..
Thanks!
<UserControl x:Class="MyNamesSpace.Layout.DockingSample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:telerikDocking="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Docking"
mc:Ignorable="d"
>
<Grid>
<telerikDocking:RadDocking>
<telerikDocking:RadDocking.DocumentHost>
<telerikDocking:RadSplitContainer>
<telerikDocking:RadPaneGroup>
<telerikDocking:RadDocumentPane Header="Document 1" Title="Document 1" />
</telerikDocking:RadPaneGroup>
</telerikDocking:RadSplitContainer>
</telerikDocking:RadDocking.DocumentHost>
<telerikDocking:RadSplitContainer Orientation="Vertical" InitialPosition="DockedLeft">
<telerikDocking:RadPaneGroup telerikDocking:ProportionalStackPanel.RelativeSize="200, 300">
<telerikDocking:RadPane Header="Pane Left 1" Content="Pane Left 1" />
</telerikDocking:RadPaneGroup>
<telerikDocking:RadPaneGroup telerikDocking:ProportionalStackPanel.RelativeSize="200, 100">
<telerikDocking:RadPane Header="Pane Left 2" Content="Pane Left 2" />
</telerikDocking:RadPaneGroup>
<telerikDocking:RadPaneGroup>
<telerikDocking:RadPane Header="Pane Left 3" Content="Pane Left 3" />
</telerikDocking:RadPaneGroup>
</telerikDocking:RadSplitContainer>
<telerikDocking:RadSplitContainer Orientation="Horizontal" InitialPosition="DockedRight">
<telerikDocking:RadPaneGroup telerikDocking:ProportionalStackPanel.RelativeSize="150, 200">
<telerikDocking:RadPane Header="Pane Right 1" Content="Pane Right 1" />
</telerikDocking:RadPaneGroup>
<telerikDocking:RadPaneGroup telerikDocking:ProportionalStackPanel.RelativeSize="250, 200">
<telerikDocking:RadPane Header="Pane Right 2" Content="Pane Right 2" />
</telerikDocking:RadPaneGroup>
</telerikDocking:RadSplitContainer>
<telerikDocking:RadSplitContainer Orientation="Horizontal" InitialPosition="DockedBottom">
<telerikDocking:RadPaneGroup telerikDocking:ProportionalStackPanel.RelativeSize="100, 200">
<telerikDocking:RadPane Header="Pane Bottom 1" Content="Pane Bottom 1" />
</telerikDocking:RadPaneGroup>
<telerikDocking:RadPaneGroup telerikDocking:ProportionalStackPanel.RelativeSize="300, 200">
<telerikDocking:RadPane Header="Pane Bottom 2" Content="Pane Bottom 2" />
</telerikDocking:RadPaneGroup>
</telerikDocking:RadSplitContainer>
</telerikDocking:RadDocking>
</Grid>
</UserControl>