DialDevicePicker.DialDevicePickerDismissed Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates that the device picker was light dismissed, which means that the user clicked or touched anywhere other than the picker UI, and so the picker will be closed.
// Register
event_token DialDevicePickerDismissed(TypedEventHandler<DialDevicePicker, IInspectable const&> const& handler) const;
// Revoke with event_token
void DialDevicePickerDismissed(event_token const* cookie) const;
// Revoke with event_revoker
DialDevicePicker::DialDevicePickerDismissed_revoker DialDevicePickerDismissed(auto_revoke_t, TypedEventHandler<DialDevicePicker, IInspectable const&> const& handler) const;
public event TypedEventHandler<DialDevicePicker,object> DialDevicePickerDismissed;
function onDialDevicePickerDismissed(eventArgs) { /* Your code */ }
dialDevicePicker.addEventListener("dialdevicepickerdismissed", onDialDevicePickerDismissed);
dialDevicePicker.removeEventListener("dialdevicepickerdismissed", onDialDevicePickerDismissed);
- or -
dialDevicePicker.ondialdevicepickerdismissed = onDialDevicePickerDismissed;
Public Custom Event DialDevicePickerDismissed As TypedEventHandler(Of DialDevicePicker, Object)
Event Type
TypedEventHandler<DialDevicePicker,IInspectable>