Извините, я только что нашел похожий вопрос / ответ здесь :
ответ на мою проблему таков:
<CaptureElement x:Name="captureElement"/>
async private void StartCamPrev()
{
var mediaCapture = new Windows.Media.Capture.MediaCapture();
await mediaCapture.InitializeAsync();
this.captureElement.Source = mediaCapture;
await mediaCapture.StartPreviewAsync();
}
И ответ о передней / задней камере я нашел здесь :
DeviceInformationCollection devices = await DeviceInformation.FindAllAsync(DeviceClass.VideoCapture);
var mediaCapture = new Windows.Media.Capture.MediaCapture();
await mediaCapture.InitializeAsync(new MediaCaptureInitializationSettings
{
// the index of the devices-array is defining the device
// here I just put a '0' for testing-purposes:
VideoDeviceId = devices[0].Id
});