共用方式為


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 屬性來擷取游標影像的最新位置。

適用於

另請參閱