
Hi I am using my custom theme and i had a xaml file for it. I have to change the foreground color of Ribbon:Button label and could not find any option to mchange it. pls help.
xmlns:ribbon="http://schemas.actiprosoftware.com/winfx/xaml/ribbon"
<ribbon:Button
Label="{Binding Title}"
VariantSize="Large"
ImageSourceLarge="{Binding ImagePath}"
Width="100"
VerticalContentAlignment="Center"
Command="{Binding ElementName=PerformanceGroup, Path=DataContext.SelectedCommand}"
CommandParameter="{Binding}"
Visibility="{Binding Visibility}"
IsEnabled="{Binding IsEnabled}"
ToolTip="{Binding Title}">
</ribbon:Button>
Above is my code.