每次我按后退按钮从第二页到主页我都会收到此调试器错误:
UnhandledException += (sender, e) =>
{
if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
};
我的后退按钮按下事件是这样的:
private void HardwareButtons_BackPressed(object sender, BackPressedEventArgs e)
{
Frame rootFrame = Window.Current.Content as Frame;
if (rootFrame != null && rootFrame.CanGoBack)
{
e.Handled = true;
rootFrame.GoBack();
}
}
在我的主页中我使用<CaptureElement>
使用The requet is invalid in the current state
使用相机,当我按下按钮时,我也会收到此错误:await _mediaCapture.CapturePhotoToStreamAsync(imgProp, stream);
在此部分代码中:
Pascal