CastingDevicePicker.CastingDeviceSelected 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 ha seleccionado un dispositivo del selector.
// Register
event_token CastingDeviceSelected(TypedEventHandler<CastingDevicePicker, CastingDeviceSelectedEventArgs const&> const& handler) const;
// Revoke with event_token
void CastingDeviceSelected(event_token const* cookie) const;
// Revoke with event_revoker
CastingDevicePicker::CastingDeviceSelected_revoker CastingDeviceSelected(auto_revoke_t, TypedEventHandler<CastingDevicePicker, CastingDeviceSelectedEventArgs const&> const& handler) const;
public event TypedEventHandler<CastingDevicePicker,CastingDeviceSelectedEventArgs> CastingDeviceSelected;
function onCastingDeviceSelected(eventArgs) { /* Your code */ }
castingDevicePicker.addEventListener("castingdeviceselected", onCastingDeviceSelected);
castingDevicePicker.removeEventListener("castingdeviceselected", onCastingDeviceSelected);
- or -
castingDevicePicker.oncastingdeviceselected = onCastingDeviceSelected;
Public Custom Event CastingDeviceSelected As TypedEventHandler(Of CastingDevicePicker, CastingDeviceSelectedEventArgs)