This question is locked. New answers and comments are not allowed.
Please let me know if this is a known issue:
For calendar view with Safari 3.1.2, tool tips in some cases shows tool tip from other appointment. Tooltip template I am using is
This issue comes intermittently.
For calendar view with Safari 3.1.2, tool tips in some cases shows tool tip from other appointment. Tooltip template I am using is
This issue comes intermittently.
<DataTemplate x:Key="ToolTipTemplate"> <StackPanel Orientation="Horizontal"> <StackPanel> <StackPanel Orientation="Horizontal" > <TextBlock Text="{Binding Appointment.StartTime}"/> <TextBlock Text="-"/> <TextBlock Text="{Binding Appointment.EndTime}"/> <TextBlock Text=" "/> <TextBlock Text="{Binding Subject}" /> </StackPanel> <TextBlock Text="{Binding Appointment.Location}" /> <TextBlock Text="{Binding Appointment.Organizer}" /> </StackPanel> <Image Source="{Binding Appointment.ImportanceImageSource}" Width="16" Height="16" HorizontalAlignment="Right" /> <Image Source="{Binding Appointment.AttachmentImageSource}" Width="16" Height="16" HorizontalAlignment="Right"/> </StackPanel> </DataTemplate>