PivotPanel.VerticalSnapPointsChanged 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
此属性保留供内部使用,不应在代码中使用。
// Register
event_token VerticalSnapPointsChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void VerticalSnapPointsChanged(event_token const* cookie) const;
// Revoke with event_revoker
PivotPanel::VerticalSnapPointsChanged_revoker VerticalSnapPointsChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> VerticalSnapPointsChanged;
function onVerticalSnapPointsChanged(eventArgs) { /* Your code */ }
pivotPanel.addEventListener("verticalsnappointschanged", onVerticalSnapPointsChanged);
pivotPanel.removeEventListener("verticalsnappointschanged", onVerticalSnapPointsChanged);
- or -
pivotPanel.onverticalsnappointschanged = onVerticalSnapPointsChanged;
Public Custom Event VerticalSnapPointsChanged As EventHandler(Of Object) Implements VerticalSnapPointsChanged