我正在尝试在应用程序中使用GraphicsCapturePicker
代码隐藏中的 aMAUI
并且遇到 COM 异常,这意味着我从错误的线程中调用它。通常 WPF/XAML 代码隐藏文件中的代码是从主线程调度的,所以我对这里出了什么问题有点困惑:
// A regular button event handler in MainPage.xaml.cs
private void OnScreenCaptureClicked(object sender, EventArgs e)
{
var picker = new GraphicsCapturePicker();
GraphicsCaptureItem item = picker.PickSingleItemAsync().GetResults();
}
抛出异常:
"The application called an interface that was marshalled for a different thread"
Exception thrown: 'System.Runtime.InteropServices.COMException' in System.Private.CoreLib.dll
注意:在上面的示例中,我将同步调用该方法作为测试,以便更容易捕获异常,当它被包装在任务中时也会发生同样的事情。
这个确切的代码在常规的非 MAUI UWP/C# 项目中运行良好。