If you want to mark individual days on the calendar, you should take a look at the Calendar.SelectedDates and Calendar.SelectedDayStyle properties
Then you could do something like this
myCal.SelectedDates.Add({DateTime object}); myCal.SelectedDayStyle.BackColor = System.Drawing.Color.Red;
This is useful, for example, when displaying dates with specific events.
If you want to mark specific dates in a month, you should take a look at the Calendar.DayRender Event. This event should help you make every red red color by doing something like this (using the DayOfWeek enumeration)
void DayRender(Object source, DayRenderEventArgs e) {
source share