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

Telerik Theme

1 Answer 189 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
dennis
Top achievements
Rank 1
dennis asked on 25 Mar 2009, 10:30 PM
What had happen to the telerik theme???.
The Intellisense dosnt recognize but still works... but the style ahs changed few colors.... that i dont like. how i can get back the old theme?

1 Answer, 1 is accepted

Sort by
0
Kalin Milanov
Telerik team
answered on 30 Mar 2009, 12:03 PM
Hi there,

We did some minor changes in the Telerik Theme for Q1. If you like to revert to some old colors you can use RowAppearanceSettings and define the desired Styles and Colors. Here is a sample code how to make AlternateRows appear Red.

        <telerik:RadGridView Name="RadGridView1" telerik:StyleManager.Theme="Telerik"
            <telerik:RadGridView.Resources> 
                <!--AlternateRowStyleDefiniton--> 
                <Style x:Key="GridViewAlternateRowStyle" TargetType="telerik:GridViewRow"
                    <Setter Property="Background" Value="Red" /> 
                </Style> 
            </telerik:RadGridView.Resources> 
            <telerik:RadGridView.RowAppearance> 
                <telerik:RowAppearanceSettings AlternateRowStyle="{StaticResource GridViewAlternateRowStyle}" /> 
            </telerik:RadGridView.RowAppearance> 
        </telerik:RadGridView> 

If you need to make more in depth customization you can download the attached zip file which contains the Telerik Theme and change the colors in the Resources.xaml file. 

Also, note that we are considering making the Telerik Theme obsolete and focus on themes which we can use in all our controls for WPF and Silverlight.

Regards,
Kalin Milanov
the Telerik team

Check out Telerik Trainer , the state of the art learning tool for Telerik products.
Tags
General Discussions
Asked by
dennis
Top achievements
Rank 1
Answers by
Kalin Milanov
Telerik team
Share this question
or