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

Controls, namespaces, and dlls

1 Answer 136 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Gary Blakely
Top achievements
Rank 1
Gary Blakely asked on 01 Feb 2011, 09:16 PM

One of the most frustrating things, for me, in working with Telerik controls is finding out what dll needs to be referenced for a given control.

Today I opened up an old project, after updating my version of Silverlight Telerik controls.  I had the following line in my xamll page:

 xmlns:teleriknav="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation"

and, of course, I have <teleriknav:RadWindow... whenever I define a radwindow.  Now I get the error:

The tag 'RadWindow' does not exist in XML namespace 'clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation

So Where is it now?  I pour through the docs on Radwindow and everything about the Radwindow is talked about except where it exists.  In fact I have not been able to find a map controls, their namespaces, and the dlls they exist in. 

What am I overlooking?
Thanks,
Gary

 

 

 

 



 

1 Answer, 1 is accepted

Sort by
0
Milan
Telerik team
answered on 02 Feb 2011, 08:33 AM

Hi Gary Blakely,

We understand your frustration and we will consider adding required references information to every control in our documentation. Currently the assembly dependencies can be found here.

RadWindow is still located in the Navigation assembly and there are no namespace changed. Could you please make sure that all assembly references have the same version. Also you could switch to a single URL namespace which will eliminate the need to have separate namespace mappings. 

For example:

<Window x:Class="GridView.TestApplication.Window1"
        xmlns:my="clr-namespace:GridView.TestApplication"
        Title="Window1" Height="800" Width="600">
  
    <Grid Background="Azure">
        <telerik:RadGridView ></telerik:RadGridView>

Best wishes,
Milan
the Telerik team
Let us know about your Windows Phone 7 application built with RadControls and we will help you promote it. Learn more>>
Tags
General Discussions
Asked by
Gary Blakely
Top achievements
Rank 1
Answers by
Milan
Telerik team
Share this question
or