This is a migrated thread and some comments may be shown as answers.

Can't run RadDocking

2 Answers 118 Views
Docking
This is a migrated thread and some comments may be shown as answers.
TheLostLeaf
Top achievements
Rank 2
TheLostLeaf asked on 05 Jan 2010, 09:06 PM
Hi,
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>




 

 

 

 

 

 

 


2 Answers, 1 is accepted

Sort by
0
Accepted
Miroslav Nedyalkov
Telerik team
answered on 06 Jan 2010, 11:57 AM
Hello Eric,

 We couldn't reproduce the problem at our side. Could you please open a support ticket and send us a sample project that reproduces the problem? This would be very helpful.

Greetings,
Miroslav Nedyalkov
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
TheLostLeaf
Top achievements
Rank 2
answered on 06 Jan 2010, 06:03 PM
Thanks for quick response. I tested in a blank solution with C# 2008 Express, and VS 2010 Beta2, (should have done that first...) and it worked fine, so I must have something broke in the project/solution I'm trying to use them in. If I figure it out i'll post the solution.

Tags
Docking
Asked by
TheLostLeaf
Top achievements
Rank 2
Answers by
Miroslav Nedyalkov
Telerik team
TheLostLeaf
Top achievements
Rank 2
Share this question
or