How do I disable the default appointment tooltip in the DayView in the Calendar?
I want to handle the tooltip myself, but the default continues to show up.
In the month and week view, I can disable this with the TipStyleActivity property, but there does not seem to be one for the day view.
Greg
Hello,
Yes, this is a very good approach you have chosen. I have created many samples with these approach so if you have any issues with it, please do not hesitate to contact me, I will be very happy to assist you.
Wow, answering so fast!!! Thank you; this is exactly what I want. I will work with a custom tooltipmanager handling in the MouseEnterElement and the MouseLeaveElement.
Thank you for your great suport. :)
There is the 'TipStyleActivity' property in the 'MonthView' controls for which Greg was talking about. Please take a look at it.
Hi Boris,
Very nice! And how can hide the tooltip in the MonthView?
Thank you very much.
Hello Greg,
You could hook onto the 'BeforeAppointmentToolTipDisplayed' and supress the showing of the tooltip:
private void ultraDayView1_BeforeAppointmentToolTipDisplayed(object sender, Infragistics.Win.UltraWinSchedule.BeforeAppointmentToolTipDisplayedEventArgs e) { e.Cancel = true; }
Please feel free to let me know if I misunderstood you or if you have any other questions.