how to fill holiday and weekend in calender control?
how to fill holiday and weekend in calender control with different colours?
for example for Weekend = black colour;
holiday = sky blue;
i tried below code but it only shows only single colour for both weekend and holiday.
if (dtholidays.Contains(e.Day.Date) || e.Day.IsWeekend)
{
e.Cell.BackColor = System.Drawing.Color.SkyBlue;
e.Cell.ForeColor = System.Drawing.Color.White;
}