$99 VS $1000+. UI Control for ASP.NET AJAX(contains chart and gridview).
Scheduler control for Windows Forms
Create rich Outlook style functionality and add rich scheduling interfaces to C# Windows application
Home > WinForms UI Controls > User Manual > Add Tooltips in Scheduler in C#

Create Tooltips to Appointments for Scheduler in C#.NET

KetticScheduler control is capable of creating and associating tooltips to an appointment. In addition, this control is able to create and edit the appointments like setting of the status for a particular appointment, selection of a color coded category, tweaking, customizing and extending the edit appointment dialogs of the Scheduler with other new controls. Various properties are also available to the designers to customize the Scheduler to fit custom scenario.

C# Create/Associate Tooltips to Appointment in Scheduler

KetticScheduler WinForms control contains the ToolTipText property for the developers to create a tooltip and associate it to an appointment. To achieve that, change the value of the ToolTipText property to a string.
In the following C# code sample, we are going to apply the ToolTipText property of the Appointment C# class and then create a new tooltip with custom text to an appointment in KetticScheduler.

Appointment myAppointment = new Appointment(DateTime.Now, TimeSpan.FromMinutes(10), "Summary", "Description");
myAppointment.ToolTipText = "Custom Tooltip";
this.ketticScheduler1.Appointments.Add(myAppointment);
UI Controlsfor Windows Forms
.NET WinForms UI Overview.NET WinForms UI Features.NET WinForms UI GuideC# WinForms UI DesignVB.NET WinForms UI Design
WinForms UI Controls