AdvancedPhotoCapture.AllPhotosCaptured Kejadian

Definisi

Terjadi ketika semua bingkai yang diperlukan untuk pengambilan foto lanjutan telah diambil.

// 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) 

Jenis Acara

Keterangan

Operasi pengambilan foto tingkat lanjut mungkin mengharuskan beberapa bingkai diambil dan diproses untuk menghasilkan gambar yang dihasilkan. Kejadian ini memberi tahu Anda ketika bingkai sumber telah diambil, yang memungkinkan Anda untuk memulai pengambilan foto lanjutan lain segera setelah perangkat pengambilan tersedia, alih-alih menunggu panggilan ke CaptureAsync selesai, yang dinaikkan hanya setelah pemrosesan gambar bingkai yang diambil selesai.

Berlaku untuk