共用方式為


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 的呼叫完成,這只會在擷取畫面格的影像處理完成之後引發。

適用於