在MonthCalendar中选择特定日期

时间:2014-03-28 14:32:27

标签: c# date select monthcalendar

是否可以使用变量自动查找月历中的某个日期?

DateTime example = Convert.ToDateTime("01/01/2014");

//Automatically select 1 January 2014 in the calendar
//(i.e. The date corresponding to the example variable above)

1 个答案:

答案 0 :(得分:1)

使用MonthCalendar.SetDate方法

DateTime example = Convert.ToDateTime("01/01/2014"); 
monthCalendar.SetDate(example);