InputPointerSource.PointerRoutedReleased Событие
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Происходит при освобождении указателя s, направляемого в другой объект InputPointerSource , в этом другом целевом объекте ввода.
// Register
event_token PointerRoutedReleased(TypedEventHandler<InputPointerSource, PointerEventArgs const&> const& handler) const;
// Revoke with event_token
void PointerRoutedReleased(event_token const* cookie) const;
// Revoke with event_revoker
InputPointerSource::PointerRoutedReleased_revoker PointerRoutedReleased(auto_revoke_t, TypedEventHandler<InputPointerSource, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<InputPointerSource,PointerEventArgs> PointerRoutedReleased;
function onPointerRoutedReleased(eventArgs) { /* Your code */ }
inputPointerSource.addEventListener("pointerroutedreleased", onPointerRoutedReleased);
inputPointerSource.removeEventListener("pointerroutedreleased", onPointerRoutedReleased);
- or -
inputPointerSource.onpointerroutedreleased = onPointerRoutedReleased;
Public Custom Event PointerRoutedReleased As TypedEventHandler(Of InputPointerSource, PointerEventArgs)