Compartir a través de


BindableProperty.BindingPropertyChangingDelegate<TPropertyType> Delegado

Definición

Delegado fuertemente tipado para BindableProperty.PropertyChanging.

public delegate void BindableProperty.BindingPropertyChangingDelegate<in TPropertyType>(BindableObject bindable, TPropertyType oldValue, TPropertyType newValue);
type BindableProperty.BindingPropertyChangingDelegate<'PropertyType> = delegate of BindableObject * 'PropertyType * 'PropertyType -> unit

Parámetros de tipo

TPropertyType

Tipo de la propiedad enlazada.

Este parámetro de tipo es contravariante, es decir, puede usar el tipo que haya especificado o cualquier tipo menos derivado. Si desea obtener más información sobre la covarianza y la contravarianza, consulte Covarianza y contravarianza en genéricos.

Parámetros

bindable
BindableObject

Objeto enlazable que contiene la propiedad.

oldValue
TPropertyType

Valor antiguo de la propiedad.

newValue
TPropertyType

Nuevo valor de propiedad.

Se aplica a