Compartir a través de


PlatformBehavior<TView,TPlatformView>.OnAttachedTo Método

Definición

Sobrecargas

OnAttachedTo(BindableObject)

Los desarrolladores de aplicaciones reemplazan este método para implementar los comportamientos que se asociarán con bindable.

OnAttachedTo(TView)

Los desarrolladores de aplicaciones reemplazan este método para implementar los comportamientos que se asociarán con bindable.

OnAttachedTo(TView, TPlatformView)

Se llama a este método cuando el enlazable se adjunta a la jerarquía de vistas de plataforma.

OnAttachedTo(BindableObject)

Source:
PlatformBehavior.cs
Source:
PlatformBehavior.cs

Los desarrolladores de aplicaciones reemplazan este método para implementar los comportamientos que se asociarán con 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)

Parámetros

bindable
BindableObject

Objeto enlazable al que se ha adjuntado el comportamiento.

Se aplica a

OnAttachedTo(TView)

Source:
PlatformBehavior.cs
Source:
PlatformBehavior.cs

Los desarrolladores de aplicaciones reemplazan este método para implementar los comportamientos que se asociarán con 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)

Parámetros

bindable
TView

Objeto enlazable al que se ha adjuntado el comportamiento.

Se aplica a

OnAttachedTo(TView, TPlatformView)

Source:
PlatformBehavior.cs
Source:
PlatformBehavior.cs

Se llama a este método cuando el enlazable se adjunta a la jerarquía de vistas de plataforma.

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)

Parámetros

bindable
TView

Objeto enlazable al que se ha adjuntado el comportamiento.

platformView
TPlatformView

Control de plataforma conectado al objeto enlazable.

Se aplica a