I'm not quite sure how to change the colors of the filled and unfilled stars. I realize there are properties like EmptyIconStyle, but I can't seem my changes to work.
This is what I've tried (but the app crashes now):
<my:RadRating IsReadOnly="True" Value="{Binding RatingValue}" FontSize="10">
<my:RadRating.FilledIconStyle>
<Style TargetType="my:RadRating">
<Setter Property="Foreground" Value="AliceBlue"></Setter>
</Style>
</my:RadRating.FilledIconStyle>
</my:RadRating>
I would also be interested in how to change the colors depending on whether dark or light theme has been chosen.