I have a problem with the RadCalendar. This is my code. It is the content of a DropDown Button (- but this does not matter....)
<telerik:RadDropDownButton Grid.Row="0" Grid.Column="5"
x:Name="StarttimeCalendarButton"
CloseOnEnter="True" >
<telerik:RadDropDownButton.Content>
<Image Source="{StaticResource CalendarImage}" />
</telerik:RadDropDownButton.Content>
<telerik:RadDropDownButton.DropDownContent>
<telerik:RadCalendar x:Name="datepicker" IsTodayHighlighted="True" SelectionMode="Single"
SelectedDate="{Binding StartDate, Mode=TwoWay}" SelectionChanged="updateData" />
</telerik:RadDropDownButton.DropDownContent>
</telerik:RadDropDownButton>
Everything works fine with the function but the prior selected dates (when I open, select a date and close it several times) are still displayed in the color for selected dates. You can see it on the screenshot attached, the current selected date can not be identified. How can I only display the current selected date i.e. change the color of the prior selected date to standard?