Xamarin.Forms by Xamarin Inc.

<PackageReference Include="Xamarin.Forms" Version="1.3.4.6332" />

.NET API 637,440 bytes

 Behavior

public abstract class Behavior : BindableObject, IAttachedObject
Base class for generalized user-defined behaviors that can respond to arbitrary conditions and events.
protected Type AssociatedType { get; }

Gets the type of the objects with which this Behavior can be associated.

protected virtual void OnAttachedTo(BindableObject bindable)

Application developers override this method to implement the behaviors that will be associated with bindable.

protected virtual void OnDetachingFrom(BindableObject bindable)

Application developers override this method to remove the behaviors from bindable that were implemented in a previous call to the OnAttachedTo method.