this.scheduleControl1.Refresh();
We also suggest you to look into our UG and KB articles for more information related to our Schedule Control.
UG:
https://help.syncfusion.com/windowsforms/overview
KB:
https://www.syncfusion.com/forums/windowsforms
Please let us know if you need any further assistance.
Regards,
Anish
Timer timer = new Timer();
timer.Interval = 300000;
timer.Tick += new EventHandler(timer_Tick);
void timer_Tick(object sender, EventArgs e)
{
this.scheduleControl1.DataSource = datasource; // re-assign the datasource.
this.scheduleControl1.Refresh();
}
Please let us know if you need any further assistance.
Regards,
Anish
Hi.
In my project, I have added a new appointment and save it in database in scheduleControl_ScheduleAppointmentClick event. In the same event, in last line of code, I have wrote :
scheduleControl.Refresh()
that should reload all my appointment data but nothing occurs.
Can someone help me?
Thanks in advance
Raul
this.scheduleControl1.GetScheduleHost().SetDataToDayPanels(); |
Thanks for your help
I have found the solution to my problem by the next line of code:
scheduleControl1.ResetProvider(ScheduleViewType.WorkWeek);