8,707
社区成员




// 单选的情况
if (this.calendar1.SelectedDate.HasValue)
{
MessageBox.Show(this.calendar1.SelectedDate.Value.ToString());
}
// 多选的情况
if (this.calendar1.SelectedDates.Count > 0 )
{
foreach (var d in this.calendar1.SelectedDates)
{
MessageBox.Show(d.ToString());
}
}