Поделиться через


InkUnprocessedInput.PointerPressed Событие

Определение

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

// Register
event_token PointerPressed(TypedEventHandler<InkUnprocessedInput, PointerEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
InkUnprocessedInput::PointerPressed_revoker PointerPressed(auto_revoke_t, TypedEventHandler<InkUnprocessedInput, PointerEventArgs const&> const& handler) const;
public event TypedEventHandler<InkUnprocessedInput,PointerEventArgs> PointerPressed;
function onPointerPressed(eventArgs) { /* Your code */ }
inkUnprocessedInput.addEventListener("pointerpressed", onPointerPressed);
inkUnprocessedInput.removeEventListener("pointerpressed", onPointerPressed);
- or -
inkUnprocessedInput.onpointerpressed = onPointerPressed;
Public Custom Event PointerPressed As TypedEventHandler(Of InkUnprocessedInput, PointerEventArgs) 

Тип события

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

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