UIElement.DragStarting Evento

Definição

Ocorre quando uma operação de arrastar é iniciada.

// 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"/>

Tipo de evento

Comentários

DragStarting é um evento roteado. Para obter mais informações sobre o conceito de evento roteado, consulte Visão geral de eventos e eventos roteado.

Aplica-se a

Confira também