Hello Telerik community, I want to try the RadTreeListView out for my project, but i'm stuck... My xaml page is unable to find the radtreelistview option. I am using VSTS 2008 SP 1 with .NET 3.5 with Silverlight 3
this is my XAML page code and the error is on
<telerikDataView:RadTreeListView x:Name="protoTreeListView">
where the error message is
Error 1 The type 'telerikDataView:RadTreeListView' was not found. Verify that you are not missing an assembly reference and that all referenced assemblies have been built. C:\Documents and Settings\kimj2\My Documents\Visual Studio 2008\Projects\TreeListViewPrototype\TreeListViewPrototype\MainPage.xaml 13 10 TreeListViewPrototype
I also get the same error when i Copy and Paste this from "Getting Started" page
|
<telerik:RadTreeListView x:Name="radTreeListView">
</telerik:RadTreeListView |
|
<UserControl x:Class="TreeListViewPrototype.MainPage" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:telerikControls="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls" xmlns:telerikDataView="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView" xmlns:telerikInput="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Input" mc:Ignorable="d" d:DesignWidth="640" d:DesignHeight="480" > <Grid x:Name="LayoutRoot"> <telerikDataView:RadTreeListView x:Name="protoTreeListView"> </telerikDataView:RadTreeListView> </Grid> </UserControl> 