ScrollViewer.ViewChanging 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
滚动和缩放等操作导致视图更改时发生。
// Register
event_token ViewChanging(EventHandler<ScrollViewerViewChangingEventArgs> const& handler) const;
// Revoke with event_token
void ViewChanging(event_token const* cookie) const;
// Revoke with event_revoker
ScrollViewer::ViewChanging_revoker ViewChanging(auto_revoke_t, EventHandler<ScrollViewerViewChangingEventArgs> const& handler) const;
public event System.EventHandler<ScrollViewerViewChangingEventArgs> ViewChanging;
function onViewChanging(eventArgs) { /* Your code */ }
scrollViewer.addEventListener("viewchanging", onViewChanging);
scrollViewer.removeEventListener("viewchanging", onViewChanging);
- or -
scrollViewer.onviewchanging = onViewChanging;
Public Custom Event ViewChanging As EventHandler(Of ScrollViewerViewChangingEventArgs)
<ScrollViewer ViewChanging="eventhandler"/>
事件类型
注解
ScrollViewerViewChangingEventArgs 包含 IsInertial 属性,该属性报告触发事件的操作是否包含惯性组件。
并非每个基础操作都会触发此事件。 在某些情况下,ScrollViewer 逻辑会延迟中间事件并将其合并为单个事件。