UIElement.DragStarting Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsqu’une opération de glissement est lancée.
// 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"/>
Type d'événement
Remarques
DragStarting est un événement routé. Pour plus d’informations sur le concept d’événement routé, consultez Vue d’ensemble des événements et des événements routés.