此例程在UWP 5.2.2版本中冻结。
我该如何解决?
StorageFile file = null;
try
{
file = await ApplicationData.Current.LocalFolder.CreateFileAsync("save.xml", CreationCollisionOption.ReplaceExisting);
}
catch (Exception e)
{
}
答案 0 :(得分:1)
我怀疑您可能正在使用Windows 10的内部预览版或Windows 10的内部预览版SDK。一些构建具有某些API调用冻结的行为,包括MessageDialog
和{{1}} API。< / p>
如果在未连接调试器的情况下启动应用程序,则可以确认是这种情况。
要解决此问题,我建议您将PC更新为稳定版本的Windows,并将Visual Studio更新到最新的稳定版本。