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

バインド可能なオブジェクトに接続されているプラットフォーム コントロール。

適用対象