我正在尝试为我的通用应用拍摄照片,但在使用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);
有没有人遇到类似的问题或者可以建议尝试一下?
提前致谢。