New to Telerik UI for WinForms? Start a free 30-day trial
Adding Tooltips to Appointments
Updated over 1 year ago
You can create and associate a tooltip to an appointment in RadScheduler by setting the ToolTipText property to a string. The following example creates a new ToolTip with a custom text. This example uses the ToolTipText property of the Appointment class:
Add Appointment Tooltip
C#
Appointment myAppointment = new Appointment(DateTime.Now, TimeSpan.FromMinutes(30), "Summary", "Description");
myAppointment.ToolTipText = "Custom Tooltip";
this.radScheduler1.Appointments.Add(myAppointment);