I have using a radribbon view in my wpf application.I need to change the color of the active tab(1) and the tab pane(2).Please see the attached file.
here is my code
here is my code
<Window xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" x:Class="WpfApplication1.MainWindow" Title="MainWindow" Height="350" Width="525"> <Grid Background="{DynamicResource {x:Static SystemColors.ControlBrushKey}}"> <Grid.RowDefinitions> <RowDefinition Height="13*"/> <RowDefinition Height="19*"/> </Grid.RowDefinitions> <telerik:RadRibbonView VerticalAlignment="Top" Background="#FF09587E" MinimizeButtonVisibility="Visible" BorderBrush="{DynamicResource {x:Static SystemColors.InfoTextBrushKey}}" Foreground="{DynamicResource {x:Static SystemColors.MenuTextBrushKey}}" Grid.RowSpan="2"> <telerik:RadRibbonTab Header="RibbonTab" Background="{DynamicResource {x:Static SystemColors.ActiveCaptionTextBrushKey}}" OpacityMask="{DynamicResource {x:Static SystemColors.ControlDarkBrushKey}}"> <telerik:RadRibbonGroup Header="TEEEEE"/> </telerik:RadRibbonTab> </telerik:RadRibbonView> </Grid></Window>