我试图找出这里可能出错的地方。当我通过Visual Studio运行下面的代码与调试器连接时,一切正常。但是当我在没有任何Visual Studio连接的情况下运行代码时,应用程序会立即崩溃。
我是否遗漏了某些内容 - 我已经在我的应用中为延续做了必要的更改,一切都按预期工作。就在我离开Visual Studio的时候。
FolderPicker folderPicker = new FolderPicker();
folderPicker.ContinuationData["Operation"] = "DownloadFile";
folderPicker.SuggestedStartLocation = PickerLocationId.Downloads;
folderPicker.PickFolderAndContinue();
答案 0 :(得分:0)
好的想出来了。
是出于某种原因continuationManager.MarkAsStale();
<{1>}在OnSuspending()
App.xaml.cs
中删除了已修复的所有问题。
请注意,这也会阻止应用在多任务部分中显示。