DialDevicePicker.DialDeviceSelected É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 DialDeviceSelected(TypedEventHandler<DialDevicePicker, DialDeviceSelectedEventArgs const&> const& handler) const;
// Revoke with event_token
void DialDeviceSelected(event_token const* cookie) const;
// Revoke with event_revoker
DialDevicePicker::DialDeviceSelected_revoker DialDeviceSelected(auto_revoke_t, TypedEventHandler<DialDevicePicker, DialDeviceSelectedEventArgs const&> const& handler) const;
public event TypedEventHandler<DialDevicePicker,DialDeviceSelectedEventArgs> DialDeviceSelected;
function onDialDeviceSelected(eventArgs) { /* Your code */ }
dialDevicePicker.addEventListener("dialdeviceselected", onDialDeviceSelected);
dialDevicePicker.removeEventListener("dialdeviceselected", onDialDeviceSelected);
- or -
dialDevicePicker.ondialdeviceselected = onDialDeviceSelected;
Public Custom Event DialDeviceSelected As TypedEventHandler(Of DialDevicePicker, DialDeviceSelectedEventArgs)