Show / Hide Table of Contents

Delegate RoutedPropertyChangedEventHandler<T>

Represents methods that will handle various routed events that track property value changes.

Namespace: System.Windows
Assembly: OpenSilver.dll
Syntax
public delegate void RoutedPropertyChangedEventHandler<T>(object sender, RoutedPropertyChangedEventArgs<T> e);
Parameters
Type Name Description
System.Object sender

The object where the event handler is attached.

RoutedPropertyChangedEventArgs<T> e

The event data. Specific event definitions will constrain System.Windows.RoutedPropertyChangedEventArgs`1 to a type, with the type parameter of the constraint matching the type parameter constraint of a delegate implementation.

Type Parameters
Name Description
T

The type of the property value where changes in value are reported.

  • Improve this Doc
  • View Source