我有一个 Windows 8 Metro 风格的应用程序,我遇到了应该很容易完成的事情,但我发现很难想出一个解决方案。由于现在已经一个星期了,我还没有找到解决方案,我提供了 300 代表的赏金来获得一个可行的解决方案。
设想:
当我编辑文本框并单击创建新文档时,会出现一个消息对话框,询问我是否要在创建新文件之前保存对现有文件的更改。如果我单击“是,保存更改” - 然后 FileSavePicker 打开,允许我保存文件。
问题:当我单击“是,保存更改”时,我得到一个 ACCESSDENIED 异常。我设置了断点,但异常细节没有透露任何其他信息。
注意:我没有启用 DocumentsLibrary 声明,因为在这种情况下这不是必需的,当这不起作用时,我还是尝试启用它 - 但我仍然收到错误。
此外,所有代码都可以完美地独立运行(彼此分开),但是当您将它们捆绑在一起时,当 FileSavePicker 试图打开时,它就会分崩离析。
我相信这可能是一个线程问题。但我不确定。
MSDN上的消息对话框。
我的代码如下:
async private void New_Click(object sender, RoutedEventArgs e)
{
if (NoteHasChanged)
{
// Prompt to save changed before closing the file and creating a new one.
if (!HasEverBeenSaved)
{
MessageDialog dialog = new MessageDialog("Do you want to save this file before creating a new one?",
"Confirmation");
dialog.Commands.Add(new UICommand("Yes", new UICommandInvokedHandler(this.CommandInvokedHandler)));
dialog.Commands.Add(new UICommand("No", new UICommandInvokedHandler(this.CommandInvokedHandler)));
dialog.Commands.Add(new UICommand("Cancel", new UICommandInvokedHandler(this.CommandInvokedHandler)));
dialog.DefaultCommandIndex = 0;
dialog.CancelCommandIndex = 2;
// Show it.
await dialog.ShowAsync();
}
else { }
}
else
{
// Discard changes and create a new file.
RESET();
}
}
还有 FileSavePicker 的东西:
private void CommandInvokedHandler(IUICommand command)
{
// Display message showing the label of the command that was invoked
switch (command.Label)
{
case "Yes":
MainPage rootPage = this;
if (rootPage.EnsureUnsnapped())
{
// Yes was chosen. Save the file.
SaveNewFileAs();
}
break;
case "No":
RESET(); // Done.
break;
default:
// Not sure what to do, here.
break;
}
}
async public void SaveNewFileAs()
{
try
{
FileSavePicker saver = new FileSavePicker();
saver.SuggestedStartLocation = PickerLocationId.Desktop;
saver.CommitButtonText = "Save";
saver.DefaultFileExtension = ".txt";
saver.FileTypeChoices.Add("Plain Text", new List<String>() { ".txt" });
saver.SuggestedFileName = noteTitle.Text;
StorageFile file = await saver.PickSaveFileAsync();
thisFile = file;
if (file != null)
{
CachedFileManager.DeferUpdates(thisFile);
await FileIO.WriteTextAsync(thisFile, theNote.Text);
FileUpdateStatus fus = await CachedFileManager.CompleteUpdatesAsync(thisFile);
//if (fus == FileUpdateStatus.Complete)
// value = true;
//else
// value = false;
}
else
{
// Operation cancelled.
}
}
catch (Exception exception)
{
Debug.WriteLine(exception.InnerException);
}
}
我怎样才能让它工作?