Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using CameraCaptureUI in Windows 10 fullscreen

Is their a way to tell the CameraCaptureUI, that it should start in fullscreen mode, instead of a small window?

my current code from the linked webside:

CameraCaptureUI cameraUI = new CameraCaptureUI();

Windows.Storage.StorageFile capturedMedia =
    await cameraUI.CaptureFileAsync(CameraCaptureUIMode.Video);

My Application is based on WinRT for Windows 8.1.

On a Win 8 Client the Camera App just start in fullscreen, but with a Win 10 Client it open the Camera App in a small window

like image 469
Karl_Schuhmann Avatar asked Jan 20 '16 11:01

Karl_Schuhmann


1 Answers

There is no current way to control the size of the CameraCaptureUI window from a UWP app.

The dev team is aware that people are concerned about this and is watching the UserVoice request at How can we improve the Windows dev platform? You can vote and comment there to help the team understand the need and prioritize appropriately.

like image 95
Rob Caplan - MSFT Avatar answered Nov 11 '22 11:11

Rob Caplan - MSFT