1

我试图选择日历控件的选定日期以更改标签的文本但没有成功。我找到的所有代码都是针对 System.Web.UI.WebControls 命名空间的。Windows 窗体日历控件似乎没有相同的 SelectedDate 属性。有什么建议么?

4

2 回答 2

2

我想你可以使用

MonthCalendar.SelectionStart

指示选择范围中的第一个日期的 DateTime。

还有一个SelectionRangeSelectionEnd

于 2013-08-27T12:58:19.690 回答
0

您可以使用MonthCalendar.DateSelected 事件

private void monthCalendar1_DateSelected(object sender, System.Windows.Forms.DateRangeEventArgs e)
{
    // change the text of a label  

}
于 2013-08-27T12:50:23.650 回答