UIElement.DragStarting Ereignis

Definition

Tritt auf, wenn ein Ziehvorgang initiiert wird.

// Register
event_token DragStarting(TypedEventHandler<UIElement, DragStartingEventArgs const&> const& handler) const;

// Revoke with event_token
void DragStarting(event_token const* cookie) const;

// Revoke with event_revoker
UIElement::DragStarting_revoker DragStarting(auto_revoke_t, TypedEventHandler<UIElement, DragStartingEventArgs const&> const& handler) const;
public event TypedEventHandler<UIElement,DragStartingEventArgs> DragStarting;
function onDragStarting(eventArgs) { /* Your code */ }
uIElement.addEventListener("dragstarting", onDragStarting);
uIElement.removeEventListener("dragstarting", onDragStarting);
- or -
uIElement.ondragstarting = onDragStarting;
Public Custom Event DragStarting As TypedEventHandler(Of UIElement, DragStartingEventArgs) 
<uiElement DragStarting="eventhandler"/>

Ereignistyp

Hinweise

DragStarting ist ein Routingereignis. Weitere Informationen zum Konzept von Routingereignissen finden Sie unter Übersicht über Ereignisse und Routingereignisse.

Gilt für:

Weitere Informationen