GestureRecognizer.Tapped Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
// Register
event_token Tapped(TypedEventHandler<GestureRecognizer, TappedEventArgs const&> const& handler) const;
// Revoke with event_token
void Tapped(event_token const* cookie) const;
// Revoke with event_revoker
GestureRecognizer::Tapped_revoker Tapped(auto_revoke_t, TypedEventHandler<GestureRecognizer, TappedEventArgs const&> const& handler) const;
public event TypedEventHandler<GestureRecognizer,TappedEventArgs> Tapped;
function onTapped(eventArgs) { /* Your code */ }
gestureRecognizer.addEventListener("tapped", onTapped);
gestureRecognizer.removeEventListener("tapped", onTapped);
- or -
gestureRecognizer.ontapped = onTapped;
Public Custom Event Tapped As TypedEventHandler(Of GestureRecognizer, TappedEventArgs)