Clipboard.HistoryChanged Événement
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Se produit lorsqu’un nouvel élément est ajouté à l’historique du Presse-papiers.
// 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)
Type d'événement
Configuration requise pour Windows
Famille d’appareils |
Windows 10, version 1809 (introduit dans 10.0.17763.0)
|
API contract |
Windows.Foundation.UniversalApiContract (introduit dans v7.0)
|