We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date

Custom Schedule Items

Hi, I'm currently designing a scheduleing system for a broadcaster and would like to use the schedule control with custom schedule items.
Is there any way to this or do i have to use the schedule item?

1 Reply

RR Ramya R Syncfusion Team August 16, 2007 06:29 AM UTC

Hi Shaun,

Thank you for your interest in Syncfusion Products.

You can use the schedule control with custom schedule items by deriving ScheduleAppointment class or by implementing IScheduleAppointment yourself to extend or modify the information managed by the ScheduleAppointment class.

Kindly refer ScheduleSample (Syncfusion\EssentialStudio\5.1.0.51\Windows\Schedule.Windows\Samples\2.0\ScheduleSample )that ships with our Essential Schedule Product Package to know how a ScheduleAppointment class can be customized.

Apart from the properties that the ScheduleAppointment class hold, you can add your own properties as shown below,

private string name= "";
public string Name
{
get
{
return name;
}
set
{
name = value;
}
}
And you can serialize this property similar to the other properties.

Kindly let me know if I have misunderstood your requirement.

Also please let me know if you have any queries.

Thanks & Regards,
Ramya.

Loader.
Live Chat Icon For mobile
Up arrow icon