次の方法で共有


BindableProperty.BindingPropertyChangingDelegate<TPropertyType> 代理人

定義

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

型パラメーター

TPropertyType

バインドされたプロパティの型。

この型パラメーターは反変です。 つまり、指定した型、または弱い派生型のいずれかを使用することができます。 共変性および反変性の詳細については、「ジェネリックの共変性と反変性」をご覧ください。

パラメーター

bindable
BindableObject

プロパティを含むバインド可能なオブジェクト。

oldValue
TPropertyType

変更前のプロパティ値。

newValue
TPropertyType

新しいプロパティ値。

適用対象