I would like to be able to change the header color of the calendar (looks remarkably like a RadCalendar) that appears when I click on the button inside the RadDateTimePicker (set to select a date and a time). So far, I have some resources that I put together that are changing normal RadCalendar controls in the application, but these resources do not modify the calendar from the date time picker. Is there a short way to modify this color either in C# code or in XAML? I also put this together:
It would be great if there would be something that I could put in there as well to change the header of the calendar. I saw postings that talked about copying and pasting the entire sections from the theme XAML file for the control, but there has to be a shorter way to do this that I am just missing.
Thanks.
<Style x:Key="NewStyle" TargetType="{x:Type telerik:RadDateTimePicker}"> <Setter Property="Control.Background" Value="Red"/> </Style>It would be great if there would be something that I could put in there as well to change the header of the calendar. I saw postings that talked about copying and pasting the entire sections from the theme XAML file for the control, but there has to be a shorter way to do this that I am just missing.
Thanks.