We would like to use the XamSchedule control with the XamOutlookCalendarView. we want to show tool tip as hover on every Date and date should be shown in tool tip. Please let us aware how we can approach it.
I have attached screenshot in Red Highlighted area If we hover on 22 date area, tool tip should be shown with 22 date. we would like to add such kind of functionality.
Thanks
Hello piyu,
Thank you for your post.
Each of the boxes that you are looking to place a tooltip on are elements of the type MultiDayActivityArea. I would recommend that you write a Style for MultiDayActivityArea and set the Tooltip property. This MultiDayActivityArea also has a Start property, which returns the DateTime in which that area starts on, and so if you bind your ToolTip to the following, I believe you will be able to achieve your requirement:
ToolTip="{Binding RelativeSource={RelativeSource Self}, Path=Start}"
I have attached a sample project to demonstrate the above. I hope this helps you.
Please let me know if you have any other questions or concerns on this matter.
Sincerely,AndrewAssociate Developer