ListView.OnLayoutCreated(EventArgs) Method

Definition

Raises the LayoutCreated event.

protected:
 virtual void OnLayoutCreated(EventArgs ^ e);
protected virtual void OnLayoutCreated (EventArgs e);
abstract member OnLayoutCreated : EventArgs -> unit
override this.OnLayoutCreated : EventArgs -> unit
Protected Overridable Sub OnLayoutCreated (e As EventArgs)

Parameters

e
EventArgs

The event data.

Remarks

Before the ListView control can be rendered, a ListViewItem object must be created to act as the container for the control. The LayoutCreated event is raised when the layout template is created in the ListView control. This enables you to perform a custom routine whenever this event occurs, such as changing the visibility of a control that is inside the LayoutTemplate template.

Raising an event invokes the event handler through a delegate. For more information, see Handling and Raising Events.

The OnLayoutCreated method also enables derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.

Notes to Inheritors

When you override OnLayoutCreated(EventArgs) in a derived class, call the base class's OnLayoutCreated(EventArgs) method so that registered delegates receive the event.

Applies to

See also