Я не очень знаком с элементом управления Pabo.Calendar
, но похоже, что вы можете просто обновить свойства Month
или Year
объекта, который возвращается из свойства ActiveMonth
. Примерно так должно работать:
// This code example assumes you have an instance of the
// MonthCalendar object that is called `myMonthCalendar`.
var today = DateTime.Today;
myMonthCalendar.ActiveMonth.Year = today.Year;
myMonthCalendar.ActiveMonth.Month = today.Month;
Приведенный выше код считывает значение из свойства ActiveMonth
(которое является экземпляром класса ActiveMonth
, который, в свою очередь, содержит два свойства Year
и Month
). Затем он установит свойства Year
и Month
на нужные значения. Более подробный вариант кода выше:
// This code example assumes you have an instance of the
// MonthCalendar object that is called `myMonthCalendar`.
var today = DateTime.Today;
var activeMonth = myMonthCalendar.ActiveMonth; // Here we only read the ActiveMonth property.
activeMonth.Year = today.Year; // Here we update or set the Year value
activeMonth.Month = today.Month; // Here we update or set the Month value