共用方式為


ItemsPresenter.HorizontalSnapPointsChanged 事件

定義

發生於水準貼齊點變更時。

// Register
event_token HorizontalSnapPointsChanged(EventHandler<IInspectable> const& handler) const;

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

// Revoke with event_revoker
ItemsPresenter::HorizontalSnapPointsChanged_revoker HorizontalSnapPointsChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> HorizontalSnapPointsChanged;
function onHorizontalSnapPointsChanged(eventArgs) { /* Your code */ }
itemsPresenter.addEventListener("horizontalsnappointschanged", onHorizontalSnapPointsChanged);
itemsPresenter.removeEventListener("horizontalsnappointschanged", onHorizontalSnapPointsChanged);
- or -
itemsPresenter.onhorizontalsnappointschanged = onHorizontalSnapPointsChanged;
Public Custom Event HorizontalSnapPointsChanged As EventHandler(Of Object) Implements HorizontalSnapPointsChanged
<ItemsPresenter HorizontalSnapPointsChanged="eventhandler" />

事件類型

實作

適用於