Clipboard.HistoryChanged Evento

Definición

Se produce cuando se agrega un nuevo elemento al historial del Portapapeles.

// Register
static event_token HistoryChanged(EventHandler<ClipboardHistoryChangedEventArgs> const& handler) const;

// Revoke with event_token
static void HistoryChanged(event_token const* cookie) const;

// Revoke with event_revoker
static Clipboard::HistoryChanged_revoker HistoryChanged(auto_revoke_t, EventHandler<ClipboardHistoryChangedEventArgs> const& handler) const;
public static event System.EventHandler<ClipboardHistoryChangedEventArgs> HistoryChanged;
function onHistoryChanged(eventArgs) { /* Your code */ }
Windows.ApplicationModel.DataTransfer.Clipboard.addEventListener("historychanged", onHistoryChanged);
Windows.ApplicationModel.DataTransfer.Clipboard.removeEventListener("historychanged", onHistoryChanged);
- or -
Windows.ApplicationModel.DataTransfer.Clipboard.onhistorychanged = onHistoryChanged;
Public Shared Custom Event HistoryChanged As EventHandler(Of ClipboardHistoryChangedEventArgs) 

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)

Se aplica a