Compartir a través de


SysSpatialInputDeviceWatcher.Added Evento

Definición

Evento que se genera cuando se agrega un nuevo dispositivo de entrada espacial.

Importante

Esta API solo está disponible para los componentes del sistema operativo Windows. Se producirá un error en las llamadas a estas API en tiempo de ejecución para todos los demás procesos. Estas API se pueden modificar o quitar en futuras versiones de Windows.

// Register
event_token Added(TypedEventHandler<SysSpatialInputDeviceWatcher, SysSpatialInputDevice const&> const& handler) const;

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

// Revoke with event_revoker
SysSpatialInputDeviceWatcher::Added_revoker Added(auto_revoke_t, TypedEventHandler<SysSpatialInputDeviceWatcher, SysSpatialInputDevice const&> const& handler) const;
public event TypedEventHandler<SysSpatialInputDeviceWatcher,SysSpatialInputDevice> Added;
function onAdded(eventArgs) { /* Your code */ }
sysSpatialInputDeviceWatcher.addEventListener("added", onAdded);
sysSpatialInputDeviceWatcher.removeEventListener("added", onAdded);
- or -
sysSpatialInputDeviceWatcher.onadded = onAdded;
Public Custom Event Added As TypedEventHandler(Of SysSpatialInputDeviceWatcher, SysSpatialInputDevice) 

Tipo de evento

Se aplica a