This question is locked. New answers and comments are not allowed.
I'm trying to get the RadTabControl example here
http://www.telerik.com/help/silverlight/radtabcontrol-getting-started.html
to work using the Q1 2010 Silverlight controls with Silverlight 4. When I get to the part about adding the theme, I add the xaml shown, but the theme never shows.
The xaml in MainPage.xaml is below.
Am I missing something obvious?
Thanks,
Jeff
http://www.telerik.com/help/silverlight/radtabcontrol-getting-started.html
to work using the Q1 2010 Silverlight controls with Silverlight 4. When I get to the part about adding the theme, I add the xaml shown, but the theme never shows.
The xaml in MainPage.xaml is below.
Am I missing something obvious?
Thanks,
Jeff
| <UserControl |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
| xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
| xmlns:telerikNavigation="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation" x:Class="TestTelerikTabControl.MainPage" |
| xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls" |
| mc:Ignorable="d" |
| d:DesignHeight="300" d:DesignWidth="400"> |
| <Grid x:Name="LayoutRoot" Background="White"> |
| <telerikNavigation:RadTabControl Margin="8" telerik:StyleManager.Theme="Summer"> |
| <telerikNavigation:RadTabItem Header="Calendar"/> |
| <telerikNavigation:RadTabItem Header="Colors" IsBreak="True"/> |
| <telerikNavigation:RadTabItem Header="Quote"/> |
| </telerikNavigation:RadTabControl> |
| </Grid> |
| </UserControl> |