BindableProperty.BindingPropertyChangedDelegate Delegate

Definition

Delegate for BindableProperty.PropertyChanged.

public delegate void BindableProperty.BindingPropertyChangedDelegate(BindableObject bindable, object oldValue, object newValue);
type BindableProperty.BindingPropertyChangedDelegate = delegate of BindableObject * obj * obj -> unit

Parameters

bindable
BindableObject

The bindable object that contains the property.

oldValue
Object

The old property value.

newValue
Object

The new property value.

Applies to