IScrollControllerPanningInfo.PanRequested 事件
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当用户尝试使用触摸或笔启动平移时发生。
// Register
event_token PanRequested(TypedEventHandler<IScrollControllerPanningInfo, ScrollControllerPanRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void PanRequested(event_token const* cookie) const;
// Revoke with event_revoker
IScrollControllerPanningInfo::PanRequested_revoker PanRequested(auto_revoke_t, TypedEventHandler<IScrollControllerPanningInfo, ScrollControllerPanRequestedEventArgs const&> const& handler) const;
event TypedEventHandler<IScrollControllerPanningInfo,ScrollControllerPanRequestedEventArgs> PanRequested;
function onPanRequested(eventArgs) { /* Your code */ }
iScrollControllerPanningInfo.addEventListener("panrequested", onPanRequested);
iScrollControllerPanningInfo.removeEventListener("panrequested", onPanRequested);
- or -
iScrollControllerPanningInfo.onpanrequested = onPanRequested;
Event PanRequested As TypedEventHandler(Of IScrollControllerPanningInfo, ScrollControllerPanRequestedEventArgs)