UISettings.AutoHideScrollBarsChanged Evento

Definizione

Evento richiamato quando lo stato AutoHideScrollBars cambia.

// Register
event_token AutoHideScrollBarsChanged(TypedEventHandler<UISettings, UISettingsAutoHideScrollBarsChangedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
UISettings::AutoHideScrollBarsChanged_revoker AutoHideScrollBarsChanged(auto_revoke_t, TypedEventHandler<UISettings, UISettingsAutoHideScrollBarsChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<UISettings,UISettingsAutoHideScrollBarsChangedEventArgs> AutoHideScrollBarsChanged;
function onAutoHideScrollBarsChanged(eventArgs) { /* Your code */ }
uISettings.addEventListener("autohidescrollbarschanged", onAutoHideScrollBarsChanged);
uISettings.removeEventListener("autohidescrollbarschanged", onAutoHideScrollBarsChanged);
- or -
uISettings.onautohidescrollbarschanged = onAutoHideScrollBarsChanged;
Public Custom Event AutoHideScrollBarsChanged As TypedEventHandler(Of UISettings, UISettingsAutoHideScrollBarsChangedEventArgs) 

Tipo evento

Requisiti Windows

Famiglia di dispositivi
Windows 10, version 1903 (è stato introdotto in 10.0.18362.0)
API contract
Windows.Foundation.UniversalApiContract (è stato introdotto in v8.0)

Commenti

Un gestore per questo evento viene chiamato in un thread di lavoro, non nel thread chiamante.

Si applica a

Vedi anche