Layout<T>.OnAdded(T) Method

Definition

Invoked when a child is added to the layout. Implement this method to add class handling for this event.

protected virtual void OnAdded (T view);
abstract member OnAdded : 'T -> unit
override this.OnAdded : 'T -> unit

Parameters

view
T

The view which was added.

Remarks

This method is different from OnChildAdded(Element) in that it provides a typed child consistent with the type of the Layout<T>.

Applies to