DateRangeEventHandler Delegate
Represents the method that will handle the DateChanged or DateSelected event of a MonthCalendar.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Parameters
- sender
-
Type:
System.Object
The source of the event.
- e
-
Type:
System.Windows.Forms.DateRangeEventArgs
A DateRangeEventArgs that contains the event data.
When you create a DateRangeEventArgs delegate, you identify the method that will handle the event. To associate the event with your event handler, add an instance of the delegate to the event. The event handler is called whenever the event occurs, unless you remove the delegate. For more information about event handler delegates, see Handling and Raising Events.
The following example displays a form containing a MonthCalendar control that displays one calendar year. The example demonstrates setting properties like BackColor, ForeColor, TitleBackColor, TitleForeColor, CalendarDimensions, and TrailingForeColor to customize the look of the calendar control. Other properties like AnnuallyBoldedDates, BoldedDates, and MonthlyBoldedDates are set to customize which dates are bolded. The example also sets properties to change the calendar format, including FirstDayOfWeek, MaxDate, MinDate, and MaxSelectionCount. The DateSelected and DateChanged events are also handled and their status displayed on the form.
Available since 1.1