Behavior<T>.OnAttachedTo 方法

定义

重载

OnAttachedTo(BindableObject)

应用程序开发者可重写此方法以实现与 bindable 关联的行为。

OnAttachedTo(T)

应用程序开发者可重写此方法以实现与 bindable 关联的行为。

OnAttachedTo(BindableObject)

应用程序开发者可重写此方法以实现与 bindable 关联的行为。

protected:
 override void OnAttachedTo(Microsoft::Maui::Controls::BindableObject ^ bindable);
protected override void OnAttachedTo (Microsoft.Maui.Controls.BindableObject bindable);
override this.OnAttachedTo : Microsoft.Maui.Controls.BindableObject -> unit
Protected Overrides Sub OnAttachedTo (bindable As BindableObject)

参数

bindable
BindableObject

要附加行为的可绑定对象。

适用于

OnAttachedTo(T)

应用程序开发者可重写此方法以实现与 bindable 关联的行为。

protected:
 virtual void OnAttachedTo(T bindable);
protected virtual void OnAttachedTo (T bindable);
override this.OnAttachedTo : 'T -> unit
Protected Overridable Sub OnAttachedTo (bindable As T)

参数

bindable
T

要附加行为的可绑定对象。

适用于