Hi,
is it possible to customize the DayViewTimeslotHeader so it appears as you can see in the attachment?I would like to see the minutes, in addiition to hours.Thanks
Roberto
Diyan, you're definitely my favourite interlocutor.
Thanks
Hi Roberto,You have to re-template the DayViewTimeslotHeader, adding a TextBlock bound to the Start.Minute property of the DayViewTimeslotHeader. <TextBlock Text="{Binding Path=Start.Minute, Mode=OneWay, RelativeSource={RelativeSource TemplatedParent}}" Foreground="{TemplateBinding ComputedForeground}" Visibility="{Binding Path=LeadingTickmarkKind, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource tsTickmarkKindToVisibilityNotConverter}}" HorizontalAlignment="Right" Margin="0,3,7,0"></TextBlock>I attached the sample application.Thanks,Diyan Dimitrov