DevicePicker.DevicePickerDismissed イベント

定義

デバイス ピッカーがユーザーによって軽く閉じられたことを示します。 ユーザーがピッカー UI 以外の場所をクリックし、ピッカー UI が消えると、ライトの無視が発生します。

// Register
event_token DevicePickerDismissed(TypedEventHandler<DevicePicker, IInspectable const&> const& handler) const;

// Revoke with event_token
void DevicePickerDismissed(event_token const* cookie) const;

// Revoke with event_revoker
DevicePicker::DevicePickerDismissed_revoker DevicePickerDismissed(auto_revoke_t, TypedEventHandler<DevicePicker, IInspectable const&> const& handler) const;
public event TypedEventHandler<DevicePicker,object> DevicePickerDismissed;
function onDevicePickerDismissed(eventArgs) { /* Your code */ }
devicePicker.addEventListener("devicepickerdismissed", onDevicePickerDismissed);
devicePicker.removeEventListener("devicepickerdismissed", onDevicePickerDismissed);
- or -
devicePicker.ondevicepickerdismissed = onDevicePickerDismissed;
Public Custom Event DevicePickerDismissed As TypedEventHandler(Of DevicePicker, Object) 

イベントの種類

適用対象