Clipboard.HistoryEnabledChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando se cambia la configuración del sistema operativo que controla si el historial del Portapapeles está habilitado para el usuario actual.
// 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 de Windows
Familia de dispositivos |
Windows 10, version 1809 (se introdujo en la versión 10.0.17763.0)
|
API contract |
Windows.Foundation.UniversalApiContract (se introdujo en la versión v7.0)
|