共用方式為


PlatformBehavior<TView,TPlatformView>.OnAttachedTo 方法

定義

多載

OnAttachedTo(BindableObject)

應用程式開發人員可以覆寫這個方法,以實作將與 bindable 建立關聯的行為。

OnAttachedTo(TView)

應用程式開發人員可以覆寫這個方法,以實作將與 bindable 建立關聯的行為。

OnAttachedTo(TView, TPlatformView)

當可系結至平台檢視階層時,會呼叫這個方法。

OnAttachedTo(BindableObject)

來源:
PlatformBehavior.cs
來源:
PlatformBehavior.cs

應用程式開發人員可以覆寫這個方法,以實作將與 bindable 建立關聯的行為。

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

參數

bindable
BindableObject

附加行為的目標可繫結物件。

適用於

OnAttachedTo(TView)

來源:
PlatformBehavior.cs
來源:
PlatformBehavior.cs

應用程式開發人員可以覆寫這個方法,以實作將與 bindable 建立關聯的行為。

protected:
 override void OnAttachedTo(TView bindable);
protected override sealed void OnAttachedTo (TView bindable);
override this.OnAttachedTo : 'View -> unit
Protected Overrides NotOverridable Sub OnAttachedTo (bindable As TView)

參數

bindable
TView

附加行為的目標可繫結物件。

適用於

OnAttachedTo(TView, TPlatformView)

來源:
PlatformBehavior.cs
來源:
PlatformBehavior.cs

當可系結至平台檢視階層時,會呼叫這個方法。

protected:
 virtual void OnAttachedTo(TView bindable, TPlatformView platformView);
protected virtual void OnAttachedTo (TView bindable, TPlatformView platformView);
override this.OnAttachedTo : 'View * 'PlatformView -> unit
Protected Overridable Sub OnAttachedTo (bindable As TView, platformView As TPlatformView)

參數

bindable
TView

附加行為的目標可繫結物件。

platformView
TPlatformView

連接到可系結物件的平臺控件。

適用於