从 Windows 10 版本 1809(内部版本 17763)开始,从 UWP 应用程序启动反馈中心已结束,出现以下错误:-1073741819 (0xc0000005) '访问冲突'
if (StoreServicesFeedbackLauncher.IsSupported())
{
FeedbackRadioButton.Visibility = Visibility.Visible;
}
private async void LaunchFeedbackHub(object sender, RoutedEventArgs e)
{
try
{
var launcher = StoreServicesFeedbackLauncher.GetDefault();
await launcher.LaunchAsync();
}
catch (Exception ex)
{
Debug.WriteLine(ex.Message);
}
}
Run Code Online (Sandbox Code Playgroud)
有参考Microsoft.Engagment.Framework和Microsoft.Services.Store.SDK已安装。在调试模式和发布模式下都会出现此问题。
那可能是什么?