在Radcalender中清除所选日期

时间:2015-07-21 16:32:28

标签: c# winforms

我正在编写一个应用程序,点击按钮将RadCalender中选择的日期更新为数据库列。

单击按钮后,我想清除所选日期,以便最终用户在再次单击按钮之前选择日期

我已经厌倦了使用下面的代码,但它看起来似乎无法正常工作

calExpirydate.SelectedDates.Clear();

1 个答案:

答案 0 :(得分:1)

您可以使用以下脚本:

var selectedDates = get_selectedDates(); //Gets the "list" of selected dates
unselectDates(selectedDates); // unselects all dates that may have been selected.

代码取自:Telerik Reset Calendar Selected Date

----------------------------

radCal1.RemoveFocusedDate(true); //Will remove the calendar date currently selected.