Show / Hide Table of Contents

Class DependencyPropertyChangedEventArgs

Provides data for a PropertyChangedCallback implementation.

Inheritance
System.Object
DependencyPropertyChangedEventArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: System.Windows
Assembly: OpenSilver.dll
Syntax
public sealed class DependencyPropertyChangedEventArgs

Constructors

| Improve this Doc View Source

DependencyPropertyChangedEventArgs()

Declaration
public DependencyPropertyChangedEventArgs()

Properties

| Improve this Doc View Source

NewValue

Gets the value of the property after the change.

Declaration
public object NewValue { get; }
Property Value
Type Description
System.Object

The property value after the change.

| Improve this Doc View Source

OldValue

Gets the value of the property before the change.

Declaration
public object OldValue { get; }
Property Value
Type Description
System.Object

The property value before the change.

| Improve this Doc View Source

Property

Gets the identifier for the dependency property where the value change occurred.

Declaration
public DependencyProperty Property { get; }
Property Value
Type Description
DependencyProperty

The identifier field of the dependency property where the value change occurred.

  • Improve this Doc
  • View Source