gpt4 book ai didi

windows-8 - 相机打开时打开设置 super 按钮会在Windows 8/WinRT中关闭相机

转载 作者:行者123 更新时间:2023-12-04 04:38:40 24 4
gpt4 key购买 nike

我正在使用CameraCaptureUI在应用程序中打开相机;这是iam使用的代码

        var camera = new CameraCaptureUI();
camera.PhotoSettings.AllowCropping = false;
var file = await camera.CaptureFileAsync(CameraCaptureUIMode.Photo);
if (file != null)
{
var fileStream = await file.OpenAsync(FileAccessMode.Read);
var bitmapImage = new BitmapImage();
bitmapImage.SetSource(fileStream);
var sourceImage = new WriteableBitmap(bitmapImage.PixelWidth, bitmapImage.PixelHeight);
var imageStream = await file.OpenAsync(FileAccessMode.Read);
sourceImage.SetSource(imageStream);

}

但是问题不在于相机。在相机打开期间。如果打开设置 super 按钮,则等待功能将取消 var file = await camera.CaptureFileAsync(CameraCaptureUIMode.Photo); [文件返回null],并隐藏CameraCapture UI。我正在尝试做的是,即使用户打开了护身符,我也需要始终打开相机。我如何在WinRT中实现这一目标

最佳答案

为了解决您的问题,您需要在专门为特殊情况设计的UI中停止使用CameraCaptureUI并开始使用<CaptureElement/>

我在一篇文章中对此进行了帮助。 Here

祝你好运!

关于windows-8 - 相机打开时打开设置 super 按钮会在Windows 8/WinRT中关闭相机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16807583/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com