WinRT CameraCaptureUI - 没有相机结果

时间:2015-02-01 11:15:33

标签: c# camera windows-runtime

我正在尝试为我的通用应用拍摄照片,但在使用CameraCaptureUI时,相机用户界面中总会有“连接相机”标题。

我的笔记本电脑内置了相机,效果很好。能力设定。我在互联网上找不到类似的问题。我是唯一一个无法访问相机的人吗?

我的代码:

CameraCaptureUI dialog = new CameraCaptureUI();
Size aspectRatio = new Size(16, 9);
dialog.PhotoSettings.CroppedAspectRatio = aspectRatio;
StorageFile file = await dialog.CaptureFileAsync(CameraCaptureUIMode.Photo);
StorageFolder folder = KnownFolders.PicturesLibrary;

if (file != null)
    await file.MoveAsync(folder);

有没有人遇到类似的问题或者可以建议尝试一下?

提前致谢。

0 个答案:

没有答案