StringMap.MapChanged É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 lorsque le contenu de la carte change.
public:
virtual event MapChangedEventHandler<Platform::String ^, Platform::String ^> ^ MapChanged;
// Register
event_token MapChanged(MapChangedEventHandler<winrt::hstring, winrt::hstring const&> const& handler) const;
// Revoke with event_token
void MapChanged(event_token const* cookie) const;
// Revoke with event_revoker
StringMap::MapChanged_revoker MapChanged(auto_revoke_t, MapChangedEventHandler<winrt::hstring, winrt::hstring const&> const& handler) const;
public event MapChangedEventHandler<string,string> MapChanged;
function onMapChanged(eventArgs) { /* Your code */ }
stringMap.addEventListener("mapchanged", onMapChanged);
stringMap.removeEventListener("mapchanged", onMapChanged);
- or -
stringMap.onmapchanged = onMapChanged;
Public Custom Event MapChanged As MapChangedEventHandler(Of String, String) Implements MapChanged
Type d'événement
MapChangedEventHandler<Platform::String,Platform::String>
MapChangedEventHandler<winrt::hstring,winrt::hstring>