BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Venkaiah,
Sorry for the delay.
Query 1 Set the different color for particular days |
If you want to set the color for particular days ( like Saturday and Sunday ), you can use this following code,
Code:
this.scheduleControl1.Calendar.CalenderGrid.PrepareViewStyleInfo +=new Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventHandler(CalenderGrid_PrepareViewStyleInfo);
void CalenderGrid_PrepareViewStyleInfo(object sender, Syncfusion.Windows.Forms.Grid.GridPrepareViewStyleInfoEventArgs e) { if (e.ColIndex >0 &&e.ColIndex == 1 && e.RowIndex >1 ) e.Style.BackColor = Color.Red; if (e.ColIndex == 7 && e.RowIndex > 1) e.Style.BackColor = Color.LightSkyBlue;
}
|
Query 2 Show the today date to next 3 month dates |
If you want to show the today date to next 3 month dates by using the SelectedDates property to set the today date. Please refer the below code,
Code:
this.scheduleControl1.Calendar.SelectedDates.Clear(); this.scheduleControl1.Calendar.SelectedDates.Add(DateTime.Today); this.scheduleControl1.NavigationPanelFillWithCalendar = true;
|
Query 3 Set the maximum appointment date |
If you want to set the maximum appointment date in schedule control, by using the MaxAppointment property. Please refer the code, Code: this.scheduleControl1.MaxAppointment = 4;
|
Query 4 Add your items in appointment form |
If you want to add your items in appointment form, you can make use of below link.
Link: http://help.syncfusion.com/ug/windows%20forms/default.htm#!Documents/datausedbyscheduleco.htm
|
Please let us k now if you have any concern.
Regards,
Muthukumar K