We are making a prototype using Telerik Trial version 2010.1.422.1040 .I want to change default theme as Office_Blue. Once everything is done , we'll buy the Telerik Controls.
Following is my code which is not working as per our requirements, please tell what is the problem, or give some solution.
Following is my code which is not working as per our requirements, please tell what is the problem, or give some solution.
<UserControl x:Class="RowDragDrop_SL.Page" |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
xmlns:telerikTheme="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls" |
xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView" |
xmlns:grid="clr-namespace:Telerik.Windows.Controls.GridView;assembly=Telerik.Windows.Controls.GridView" |
Width="400" Height="300"> |
<Grid x:Name="LayoutRoot" Background="White"> |
<telerik:RadGridView telerikTheme:StyleManager.Theme="Office_Blue" x:Name="GridView" UseAlternateRowStyle="False"> |
</telerik:RadGridView> |
<Canvas x:Name="Adorner" telerikTheme:StyleManager.Theme="Office_Blue" Background="Transparent" IsHitTestVisible="False"></Canvas> |
</Grid> |
</UserControl> |