Well I am starting with the C # and I have created an application of a calendar to practice with MySql database connection. In the calendar I want to show a monthCalendar with all the dates that have some annotation with the background of a different color. I have used the AddBoldedDate property to make the date bold, but I do not like it at all. Is there any property that can change so that the indicated days appear with the background of another color? How can I do this in a similar way to AddBoldedDate?
Edit: I had not put the code because it has nothing special, I use the MonthCalendar component that visualstudio provides. If it is convenient that you put some special part, just tell me and I put it.
MonthCalendar Code
private void mcFecha_DateChanged(object sender, DateRangeEventArgs e)
{
foreach (Evento ev in eventos)
{
mcFecha.AddBoldedDate(ev.getEvento());
}
}
thank you very much