PropertySet.MapChanged Event

Definition

Occurs when the observable map has changed.

public:
 virtual event MapChangedEventHandler<Platform::String ^, Platform::Object ^> ^ MapChanged;
// Register
event_token MapChanged(MapChangedEventHandler<winrt::hstring, IInspectable const&> const& handler) const;

// Revoke with event_token
void MapChanged(event_token const* cookie) const;

// Revoke with event_revoker
PropertySet::MapChanged_revoker MapChanged(auto_revoke_t, MapChangedEventHandler<winrt::hstring, IInspectable const&> const& handler) const;
public event MapChangedEventHandler<string,object> MapChanged;
function onMapChanged(eventArgs) { /* Your code */ }
propertySet.addEventListener("mapchanged", onMapChanged);
propertySet.removeEventListener("mapchanged", onMapChanged);
- or -
propertySet.onmapchanged = onMapChanged;
Public Custom Event MapChanged As MapChangedEventHandler(Of String, Object) Implements MapChanged

Event Type

MapChangedEventHandler<String,Object>

MapChangedEventHandler<Platform::String,Platform::Object>

MapChangedEventHandler<winrt::hstring,IInspectable>

Implements

Applies to