MediaCapture.PhotoConfirmationCaptured Ereignis

Definition

Tritt auf, wenn ein Fotobestätigungsrahmen aufgenommen wird.

// Register
event_token PhotoConfirmationCaptured(TypedEventHandler<MediaCapture, PhotoConfirmationCapturedEventArgs const&> const& handler) const;

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

// Revoke with event_revoker
MediaCapture::PhotoConfirmationCaptured_revoker PhotoConfirmationCaptured(auto_revoke_t, TypedEventHandler<MediaCapture, PhotoConfirmationCapturedEventArgs const&> const& handler) const;
public event TypedEventHandler<MediaCapture,PhotoConfirmationCapturedEventArgs> PhotoConfirmationCaptured;
function onPhotoConfirmationCaptured(eventArgs) { /* Your code */ }
mediaCapture.addEventListener("photoconfirmationcaptured", onPhotoConfirmationCaptured);
mediaCapture.removeEventListener("photoconfirmationcaptured", onPhotoConfirmationCaptured);
- or -
mediaCapture.onphotoconfirmationcaptured = onPhotoConfirmationCaptured;
Public Custom Event PhotoConfirmationCaptured As TypedEventHandler(Of MediaCapture, PhotoConfirmationCapturedEventArgs) 

Ereignistyp

Windows-Anforderungen

App-Funktionen
backgroundMediaRecording

Hinweise

Das an dieses Ereignis übergebene CapturedFrame-Objekt enthält unformatierte Pixeldaten und muss daher manuell in den Pixelpuffer einer Bitmap kopiert werden. Informationen dazu finden Sie im Abschnitt Hinweise der Frame-Eigenschaft .

Gilt für: