MultiSelect for WinForms
MonthChanged イベント
使用例 

C1.Win.C1Input.4.5.2 アセンブリ > C1.Win.C1Input 名前空間 > DateEditMonthCalendar クラス : MonthChanged イベント
Handles the month change in the Dropdown calendar in C1DateEdit. Occurs when the value of the FirstMonth or LastMonth property changes.
シンタックス
'宣言
 
Public Event MonthChanged As System.EventHandler
public event System.EventHandler MonthChanged
解説
Can be used to set some dates in the month to bold as user scrolls through the months.
使用例
This example sets a new bolded date in the selected month.
private void c1DateEdit1_Calendar_MonthChanged(object sender, EventArgs e)
{
   DateTime dt = c1DateEdit1.Calendar.FirstMonth;
   c1DateEdit1.Calendar.AddBoldedDate(new DateTime(dt.Year, dt.Month, dt.Month));
}
参照

DateEditMonthCalendar クラス
DateEditMonthCalendar メンバ