MiracastReceiverCursorImageChannel.PositionChanged 事件

定义

当光标图像的位置发生更改时引发的事件。

// Register
event_token PositionChanged(TypedEventHandler<MiracastReceiverCursorImageChannel, IInspectable const&> const& handler) const;

// Revoke with event_token
void PositionChanged(event_token const* cookie) const;

// Revoke with event_revoker
MiracastReceiverCursorImageChannel::PositionChanged_revoker PositionChanged(auto_revoke_t, TypedEventHandler<MiracastReceiverCursorImageChannel, IInspectable const&> const& handler) const;
public event TypedEventHandler<MiracastReceiverCursorImageChannel,object> PositionChanged;
function onPositionChanged(eventArgs) { /* Your code */ }
miracastReceiverCursorImageChannel.addEventListener("positionchanged", onPositionChanged);
miracastReceiverCursorImageChannel.removeEventListener("positionchanged", onPositionChanged);
- or -
miracastReceiverCursorImageChannel.onpositionchanged = onPositionChanged;
Public Custom Event PositionChanged As TypedEventHandler(Of MiracastReceiverCursorImageChannel, Object) 

事件类型

注解

使用 Position 属性可检索光标图像的最新位置。

适用于

另请参阅