Layout<T>.OnRemoved(T) Method

Definition

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

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

Parameters

view
T

The view which was removed.

Remarks

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

Applies to