AdvancedPhotoCapture.AllPhotosCaptured 事件

定义

在捕获高级照片捕获所需的所有帧时发生。

// Register
event_token AllPhotosCaptured(TypedEventHandler<AdvancedPhotoCapture, IInspectable const&> const& handler) const;

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

// Revoke with event_revoker
AdvancedPhotoCapture::AllPhotosCaptured_revoker AllPhotosCaptured(auto_revoke_t, TypedEventHandler<AdvancedPhotoCapture, IInspectable const&> const& handler) const;
public event TypedEventHandler<AdvancedPhotoCapture,object> AllPhotosCaptured;
function onAllPhotosCaptured(eventArgs) { /* Your code */ }
advancedPhotoCapture.addEventListener("allphotoscaptured", onAllPhotosCaptured);
advancedPhotoCapture.removeEventListener("allphotoscaptured", onAllPhotosCaptured);
- or -
advancedPhotoCapture.onallphotoscaptured = onAllPhotosCaptured;
Public Custom Event AllPhotosCaptured As TypedEventHandler(Of AdvancedPhotoCapture, Object) 

事件类型

注解

高级照片捕获操作可能需要捕获并处理多个帧以生成生成的图像。 当捕获源帧时,此事件会通知你,这样一旦捕获设备可用,就可以启动另一个高级照片捕获,而不是等待 对 CaptureAsync 的调用完成,而该调用仅在捕获帧的图像处理完成后才会引发。

适用于