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

Telerik BaseOn HowTo

0 Answers 34 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Oliver
Top achievements
Rank 1
Oliver asked on 15 Jun 2012, 02:44 PM
Hi,

in my project I use the OfficeBlue Telerik theme. I want to customize my StatusBar base on my Telerik theme.

Actually I have CustomStyles.xaml and I want to use some Telerik resource keys instead of their corresponding
value but I don't know to do it, here is my XAML file:

<ResourceDictionary
 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation">
  
    <Style TargetType="StatusBar">       
        <Setter Property="StatusBar.BorderThickness" Value="1" />
        <Setter Property="StatusBar.Background">
            <Setter.Value>               
                <SolidColorBrush Color="#FFE2F0FD" /> <!--Telerik: Key="ControlBackground_Disabled"-->
            </Setter.Value>
        </Setter>
       
        <Setter Property="StatusBar.BorderBrush">
            <Setter.Value>
                <SolidColorBrush Color="#FF9BB0CD" /> <!--Telerik: Key="ControlOuterBorder_Disabled"-->               
            </Setter.Value>
        </Setter>       
    </Style>

</ResourceDictionary>

No answers yet. Maybe you can help?

Tags
General Discussions
Asked by
Oliver
Top achievements
Rank 1
Share this question
or