IAvaloniaObject.

InheritedPropertyChanged<T>(AvaloniaProperty<T>, Optional<T>, Optional<T>) Method

Summary

Called when an inheritable property changes on an object registered as an inheritance parent.
Namespace
Avalonia
Containing Type
IAvaloniaObject

Syntax

void InheritedPropertyChanged<T>(AvaloniaProperty<T> property, Optional<T> oldValue, Optional<T> newValue)

Type Parameters

Name Description
T The type of the value.

Parameters

Name Type Description
property AvaloniaProperty<T> The property that has changed.
oldValue Optional<T>
newValue Optional<T>

Return Value

Type Description
void