AvaloniaPropertyChangedEventArgs Class
Definition
Provides information for a avalonia property change.
public class AvaloniaPropertyChangedEventArgs
Constructors
| Name | Description |
|---|---|
| AvaloniaPropertyChangedEventArgs | No summary available. |
AvaloniaPropertyChangedEventArgs Constructor
public AvaloniaPropertyChangedEventArgs(Avalonia.AvaloniaObject sender, Avalonia.Data.BindingPriority priority)
Parameters
sender Avalonia.AvaloniaObject
priority Avalonia.Data.BindingPriority
Properties
| Name | Description |
|---|---|
| NewValue | Gets the new value of the property. |
| OldValue | Gets the old value of the property. |
| Priority | Gets the priority of the binding that produced the value. |
| Property | Gets the property that changed. |
| Sender | Gets the Avalonia.AvaloniaObject that the property changed on. |
NewValue Property
Gets the new value of the property.
public object NewValue { get; set; }
OldValue Property
Gets the old value of the property.
public object OldValue { get; set; }
Priority Property
Gets the priority of the binding that produced the value.
public Avalonia.Data.BindingPriority Priority { get; set; }
Value
The priority of the new value.
Property Property
Gets the property that changed.
public Avalonia.AvaloniaProperty Property { get; set; }
Value
The property that changed.
Sender Property
Gets the Avalonia.AvaloniaObject that the property changed on.
public Avalonia.AvaloniaObject Sender { get; set; }
Value
The sender object.