GestureRecognizer.ManipulationUpdated Событие

Определение

Происходит после инициирования одной или нескольких точек ввода и последующего движения (преобразования, расширения или поворота).

// Register
event_token ManipulationUpdated(TypedEventHandler<GestureRecognizer, ManipulationUpdatedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
GestureRecognizer::ManipulationUpdated_revoker ManipulationUpdated(auto_revoke_t, TypedEventHandler<GestureRecognizer, ManipulationUpdatedEventArgs const&> const& handler) const;
public event TypedEventHandler<GestureRecognizer,ManipulationUpdatedEventArgs> ManipulationUpdated;
function onManipulationUpdated(eventArgs) { /* Your code */ }
gestureRecognizer.addEventListener("manipulationupdated", onManipulationUpdated);
gestureRecognizer.removeEventListener("manipulationupdated", onManipulationUpdated);
- or -
gestureRecognizer.onmanipulationupdated = onManipulationUpdated;
Public Custom Event ManipulationUpdated As TypedEventHandler(Of GestureRecognizer, ManipulationUpdatedEventArgs) 

Тип события

Применяется к

См. также раздел