开发者

How can I highlight the dates in month calender control?

开发者 https://www.devze.com 2023-03-31 15:23 出处:网络
I am doing a School Management System Project which is a desktop application using c#.net.In that My Module is Attendance of Students. I am Collecting a list of absent days of a student.

I am doing a School Management System Project which is a desktop application using c#.net.In that My Module is Attendance of Students. I am Collecting a list of absent days of a student.

Now the Problem is to highlight the absent days of a student in a month calender in the Reports of Attendance.

For Ex, If the user select a student and Month, I will get a list of days for which he was absent. so, The student "ABC" absent for 3 days(8th, 16th,19th) in the January Month.开发者_开发技巧 So My requirement is to highlight these 3 days in Month Calender Control of C#.

Please Suggest me.

Thanks in Advance.


DateTime[] absentDates = {myVacation1, myVacation2};
monthCalendar1.BoldedDates = absentDates;

Look at here and here for more details about bold dates.

You cannot highlight dates by using the default properties. Here is a project that does the highlighting.

0

精彩评论

暂无评论...
验证码 换一张
取 消