共用方式為


CoreWetStrokeUpdateSource.WetStrokeContinuing 事件

定義

發生于 InkPresenter 開始處理筆墨筆劃,並在停止處理相同筆劃之前發生,表示筆跡資料會繼續擷取。

// Register
event_token WetStrokeContinuing(TypedEventHandler<CoreWetStrokeUpdateSource, CoreWetStrokeUpdateEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
CoreWetStrokeUpdateSource::WetStrokeContinuing_revoker WetStrokeContinuing(auto_revoke_t, TypedEventHandler<CoreWetStrokeUpdateSource, CoreWetStrokeUpdateEventArgs const&> const& handler) const;
public event TypedEventHandler<CoreWetStrokeUpdateSource,CoreWetStrokeUpdateEventArgs> WetStrokeContinuing;
function onWetStrokeContinuing(eventArgs) { /* Your code */ }
coreWetStrokeUpdateSource.addEventListener("wetstrokecontinuing", onWetStrokeContinuing);
coreWetStrokeUpdateSource.removeEventListener("wetstrokecontinuing", onWetStrokeContinuing);
- or -
coreWetStrokeUpdateSource.onwetstrokecontinuing = onWetStrokeContinuing;
Public Custom Event WetStrokeContinuing As TypedEventHandler(Of CoreWetStrokeUpdateSource, CoreWetStrokeUpdateEventArgs) 

事件類型

適用於

另請參閱