DevicePicker.DeviceSelected Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Indica que el usuario seleccionó un dispositivo en el selector.
// Register
event_token DeviceSelected(TypedEventHandler<DevicePicker, DeviceSelectedEventArgs const&> const& handler) const;
// Revoke with event_token
void DeviceSelected(event_token const* cookie) const;
// Revoke with event_revoker
DevicePicker::DeviceSelected_revoker DeviceSelected(auto_revoke_t, TypedEventHandler<DevicePicker, DeviceSelectedEventArgs const&> const& handler) const;
public event TypedEventHandler<DevicePicker,DeviceSelectedEventArgs> DeviceSelected;
function onDeviceSelected(eventArgs) { /* Your code */ }
devicePicker.addEventListener("deviceselected", onDeviceSelected);
devicePicker.removeEventListener("deviceselected", onDeviceSelected);
- or -
devicePicker.ondeviceselected = onDeviceSelected;
Public Custom Event DeviceSelected As TypedEventHandler(Of DevicePicker, DeviceSelectedEventArgs)