I am trying to get the background color for the RadDatePicker to be white. It is picking up a color that I am unaware of specifying ( read I did not do it intentionally :-) )
I found general styling instructions for the controls that indicated the proper way would be to create a style...
<Style TargetType="Label" x:Key="DateDisplayLabelStyle">
<Setter Property="TextColor" Value="#007A53"/>
<Setter Property="BackgroundColor" Value="White"/>
</Style>
I am unsure how to get the lighter green color set to white. I did not see a name for this part of the control in the documentation.
Thanks
-Sean