This question is locked. New answers and comments are not allowed.
                        
                        Hello,
I am attempting to create the most basic page with a tab control. However, I am getting an error that says:
"The tag 'RadTabControl' does not exist in XML namespace 'clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation'"
My XAML is pretty simple. It looks like the following:
    
What am I doing wrong?
                                I am attempting to create the most basic page with a tab control. However, I am getting an error that says:
"The tag 'RadTabControl' does not exist in XML namespace 'clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation'"
My XAML is pretty simple. It looks like the following:
| <UserControl x:Class="MyProject.MyPage" | 
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | 
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | 
| xmlns:navigation="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation" | 
| xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView" | 
| xmlns:gridview="clr-namespace:Telerik.Windows.Controls.GridView;assembly=Telerik.Windows.Controls.GridView"> | 
| <Grid x:Name="LayoutRoot" Background="Silver"> | 
| <navigation:RadTabControl x:Name="mainTabControl" /> | 
| </Grid> | 
| </UserControl> | 
What am I doing wrong?
