BindableProperty.BindingPropertyChangingDelegate<TPropertyType> 代理人
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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
新しいプロパティ値。