MediaCapture.PhotoConfirmationCaptured Evento

Definizione

Si verifica quando viene acquisita una cornice di conferma della foto.

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

Tipo evento

Requisiti Windows

Funzionalità dell'app
backgroundMediaRecording

Commenti

L'oggetto CapturedFrame passato a questo evento contiene dati pixel non elaborati e pertanto deve essere copiato manualmente nel buffer pixel di una bitmap. Per informazioni su come eseguire questa operazione, vedere la sezione Osservazioni della proprietà Frame .

Si applica a