Clipboard.HistoryEnabledChanged Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando a configuração do sistema operacional que controla se o histórico da área de transferência está habilitado para o usuário atual é alterado.
// Register
static event_token HistoryEnabledChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
static void HistoryEnabledChanged(event_token const* cookie) const;
// Revoke with event_revoker
static Clipboard::HistoryEnabledChanged_revoker HistoryEnabledChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public static event System.EventHandler<object> HistoryEnabledChanged;
function onHistoryEnabledChanged(eventArgs) { /* Your code */ }
Windows.ApplicationModel.DataTransfer.Clipboard.addEventListener("historyenabledchanged", onHistoryEnabledChanged);
Windows.ApplicationModel.DataTransfer.Clipboard.removeEventListener("historyenabledchanged", onHistoryEnabledChanged);
- or -
Windows.ApplicationModel.DataTransfer.Clipboard.onhistoryenabledchanged = onHistoryEnabledChanged;
Public Shared Custom Event HistoryEnabledChanged As EventHandler(Of Object)
Tipo de evento
Requisitos do Windows
Família de dispositivos |
Windows 10, version 1809 (introduzida na 10.0.17763.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduzida na v7.0)
|