ComponentOne Calendar for UWP
C1.UWP.Calendar Assembly / C1.Xaml.Calendar Namespace / C1Calendar Class / DisplayDateChanging Event

In This Topic
    DisplayDateChanging Event
    In This Topic
    Occurs before changing the DisplayDate property value.
    Syntax
    'Declaration
     
    Public Event DisplayDateChanging As System.EventHandler(Of DateChangedEventArgs)
    public event System.EventHandler<DateChangedEventArgs> DisplayDateChanging
    Event Data

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

    PropertyDescription
    Gets a new property value.  
    Gets an old property value.  
    Remarks
    This event is fired if property change is performed via the NavigateCommand command, Navigate(Int32) method, or by end-user actions such as tap, sliding finger or flick. This event is not fired at setting the DisplayDate property value from code or xaml.
    See Also