CarouselPanel.VerticalSnapPointsChanged Kejadian
Definisi
Penting
Beberapa informasi terkait produk prarilis yang dapat diubah secara signifikan sebelum dirilis. Microsoft tidak memberikan jaminan, tersirat maupun tersurat, sehubungan dengan informasi yang diberikan di sini.
Terjadi ketika pengukuran untuk titik snap vertikal berubah.
// Register
event_token VerticalSnapPointsChanged(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void VerticalSnapPointsChanged(event_token const* cookie) const;
// Revoke with event_revoker
CarouselPanel::VerticalSnapPointsChanged_revoker VerticalSnapPointsChanged(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> VerticalSnapPointsChanged;
function onVerticalSnapPointsChanged(eventArgs) { /* Your code */ }
carouselPanel.addEventListener("verticalsnappointschanged", onVerticalSnapPointsChanged);
carouselPanel.removeEventListener("verticalsnappointschanged", onVerticalSnapPointsChanged);
- or -
carouselPanel.onverticalsnappointschanged = onVerticalSnapPointsChanged;
Public Custom Event VerticalSnapPointsChanged As EventHandler(Of Object) Implements VerticalSnapPointsChanged
<CarouselPanel VerticalSnapPointsChanged="eventhandler"/>