QueryCursorEventHandler Delegate

Definition

Represents the method that will handle the QueryCursor and QueryCursor events, as well as the QueryCursor attached event.

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

Parameters

sender
Object

The object where the event handler is attached.

e
QueryCursorEventArgs

The event data.

Remarks

This delegate is used with the following attached events.

This delegate is used with the following routed events. These routed events forward the previously listed attached events to make them more accessible to the general element model in WPF.

The attached events and the base element routed events share their event data, and the bubbling and tunneling versions of the routed events also share event data. This can affect the handled characteristics of the event as it travels the event route. For details, see Input Overview.

Extension Methods

GetMethodInfo(Delegate)

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

Applies to

See also