Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Requires Windows 10 Version 1803 or later.
This topic describes how to host a camera barcode scanner preview in a UWP application.
Step 1: Setup your camera preview
See Display the camera preview for instructions on how to quickly display the camera preview stream within a XAML page in a Universal Windows Platform (UWP) app. When complete, return to this topic for camera barcode scanner specific modifications.
Step 2: Edit the capability declarations in your app manifest
Edit the capability declarations in the app manifest to prevent users from receiving the microphone consent prompt.
- In Microsoft Visual Studio, in Solution Explorer, open the designer for the application manifest by double-clicking the package.appxmanifest item.
- Select the Capabilities tab.
- Uncheck the box for Microphone.
Step 3: Add a using
directive to support media capture
using Windows.Media.Capture;
Step 4: Set up your media capture initialization settings
The following snippet shows how to initialize a MediaCaptureInitializationSettings object with the following settings:
private void InitCaptureSettings()
{
_captureInitSettings = new MediaCaptureInitializationSettings();
_captureInitSettings.VideoDeviceId = BarcodeScanner.VideoDeviceId;
_captureInitSettings.StreamingCaptureMode = StreamingCaptureMode.Video;
_captureInitSettings.PhotoCaptureSource = PhotoCaptureSource.VideoPreview;
}
Step 5: Associate the MediaCapture object with a camera barcode scanner
Replace the existing InitializeAsync method of the MediaCapture object in StartPreviewAsync()
(see Step 1: Setup your camera preview) with the following:
try
{
mediaCapture = new MediaCapture();
await mediaCapture.InitializeAsync(InitCaptureSettings());
displayRequest.RequestActive();
DisplayInformation.AutoRotationPreferences = DisplayOrientations.Landscape;
}
Tip
See Display the camera preview for more advanced topics on hosting a camera preview in your UWP application.