CleanUpVirtualizedItemEventHandler Delegate

Definition

Represents the method that handles the CleanUpVirtualizedItem attached events.

public delegate void CleanUpVirtualizedItemEventHandler(System::Object ^ sender, CleanUpVirtualizedItemEventArgs ^ e);
public delegate void CleanUpVirtualizedItemEventHandler(object sender, CleanUpVirtualizedItemEventArgs e);
type CleanUpVirtualizedItemEventHandler = delegate of obj * CleanUpVirtualizedItemEventArgs -> unit
Public Delegate Sub CleanUpVirtualizedItemEventHandler(sender As Object, e As CleanUpVirtualizedItemEventArgs)

Parameters

sender
Object

The source of the event.

Remarks

This delegate must be used by the CleanUpVirtualizedItem event handler.

The CleanUpVirtualizedItem event is an attached event, but it has a direct routing strategy, which means it can only be handled on the object where it is raised.

Extension Methods

GetMethodInfo(Delegate)

Gets an object that represents the method represented by the specified delegate.

Applies to

See also