Skip to content

Instantly share code, notes, and snippets.

@nickharris
Created September 26, 2012 01:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nickharris/3785387 to your computer and use it in GitHub Desktop.
Save nickharris/3785387 to your computer and use it in GitHub Desktop.
SAS part 2 - Camera capture
using Windows.Media.Capture;
private async void OnTakePhotoClick(object sender, RoutedEventArgs e)
{
//Take photo or video
CameraCaptureUI cameraCapture = new CameraCaptureUI();
StorageFile media = await cameraCapture.CaptureFileAsync(CameraCaptureUIMode.PhotoOrVideo);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment