OrientedVirtualizingPanel.HorizontalSnapPointsChanged 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当水平吸附点的度量值更改时触发。
// Register
event_token HorizontalSnapPointsChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void HorizontalSnapPointsChanged(event_token const* cookie) const;
// Revoke with event_revoker
OrientedVirtualizingPanel::HorizontalSnapPointsChanged_revoker HorizontalSnapPointsChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> HorizontalSnapPointsChanged;
function onHorizontalSnapPointsChanged(eventArgs) { /* Your code */ }
orientedVirtualizingPanel.addEventListener("horizontalsnappointschanged", onHorizontalSnapPointsChanged);
orientedVirtualizingPanel.removeEventListener("horizontalsnappointschanged", onHorizontalSnapPointsChanged);
- or -
orientedVirtualizingPanel.onhorizontalsnappointschanged = onHorizontalSnapPointsChanged;
Public Custom Event HorizontalSnapPointsChanged As EventHandler(Of Object) Implements HorizontalSnapPointsChanged
<orientedVirtualizingPanel HorizontalSnapPointsChanged="eventhandler" />