Scheduler for UWP | ComponentOne
C1.Xaml.Schedule Namespace / C1Scheduler Class / SelectedDateTimeChanged Event

In This Topic
    SelectedDateTimeChanged Event
    In This Topic
    Occurs when the SelectedDateTime property value has been changed.
    Syntax
    'Declaration
     
    
    <C1DescriptionAttribute("C1Scheduler.SelectedDateTimeChanged", "Occurs when the SelectedDateTime property value has been changed.")>
    <C1CategoryAttribute("Selection")>
    Public Event SelectedDateTimeChanged As EventHandler(Of DateTimePropertyChangeEventArgs)
    [C1Description("C1Scheduler.SelectedDateTimeChanged", "Occurs when the SelectedDateTime property value has been changed.")]
    [C1Category("Selection")]
    public event EventHandler<DateTimePropertyChangeEventArgs> SelectedDateTimeChanged
    Event Data

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

    PropertyDescription
    Gets a new property value.  
    Gets an old property value.  
    (Inherited from Windows.UI.Xaml.RoutedEventArgs)
    Gets a Windows.UI.Xaml.DependencyProperty object. (Inherited from C1.Xaml.Schedule.PropertyChangeEventArgsBase)
    See Also