CastingDevicePicker.CastingDeviceSelected Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Indique que l’utilisateur a sélectionné un appareil dans le sélecteur.
// 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)