Calendar for WPF | ComponentOne
C1.WPF.Calendar Namespace / C1Calendar Class / DaySlotLoading Event

In This Topic
    DaySlotLoading Event
    In This Topic
    Occurs when an element representing a day in the calendar is about to be created.
    Syntax
    'Declaration
     
    
    Public Event DaySlotLoading As EventHandler(Of CalendarDaySlotLoadingEventArgs)
    public event EventHandler<CalendarDaySlotLoadingEventArgs> DaySlotLoading
    Event Data

    The event handler receives an argument of type CalendarDaySlotLoadingEventArgs containing data related to this event. The following CalendarDaySlotLoadingEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets the date information for the current day slot.  
    Gets or sets the visual element shown in the day slot.  
    Gets whether or not the day is an adjacent day in the calendar.  
    Gets the slot raising the event. (Inherited from C1.WPF.Calendar.CalendarSlotLoadingEventArgs<CalendarDaySlotInfo>)
    Gets or sets the visual element shown in the day slot. (Inherited from C1.WPF.Calendar.CalendarSlotLoadingEventArgs<CalendarDaySlotInfo>)
    Gets the date information for the slot. (Inherited from C1.WPF.Calendar.CalendarSlotLoadingEventArgs<CalendarDaySlotInfo>)
    See Also