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