ComponentOne Basic Library for UWP
C1.UWP Assembly / C1.Xaml Namespace / ExecutedRoutedEventHandler Delegate
The object where the event handler is attached.
The event data.

In This Topic
    ExecutedRoutedEventHandler Delegate
    In This Topic
    Represents the method that will handle the Executed and CommandBinding.PreviewExecuted events.
    Syntax
    'Declaration
     
    Public Delegate Sub ExecutedRoutedEventHandler( _
       ByVal sender As System.Object, _
       ByVal e As ExecutedRoutedEventArgs _
    ) 
    public delegate void ExecutedRoutedEventHandler( 
       System.object sender,
       ExecutedRoutedEventArgs e
    )

    Parameters

    sender
    The object where the event handler is attached.
    e
    The event data.
    See Also