如何根据TextBox中的值设置Calendar控件的年份

时间:2012-09-09 05:13:38

标签: c#

我有一个日历控件,并且想要在单击按钮时根据文本框中的值设置日历的年份属性。

2 个答案:

答案 0 :(得分:0)

WPF应用程序,日历控件:

calendar1.SelectedDate = DateTime.Now.Year = int.Parse(TextBox.Text);

答案 1 :(得分:0)

使用WinForms MonthCalendar控件:

DateTime currentDate = myCalendar.SelectionStart;
currentDate = new DateTime (Int32.Parse(txtYear.Text), currentDate.Month, currentDate.Day);
myCalendar.SelectionStart = currentDate;