我有一个Windows 8 Metro风格的应用程序,我已经遇到了应该是一个简单的事情,但我发现很难找到解决方案。由于现在已经过了一个星期,我仍然没有找到解决方案,我正在为一个有效的解决方案提供300个代表的奖金。
情景:
当我编辑文本框,然后单击“创建新文档”时,会出现一个MessageDialog,询问我是否要在创建新文件之前保存对现有文件的更改。如果单击“是,保存更改” - 则会打开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);
}
}
我怎样才能让它发挥作用?
答案 0 :(得分:4)
问题似乎是您在FileSavePicker
关闭之前(以及MessageDialog
来电终止之前)打开await dialog.ShowAsync()
。我不确定为什么会出现这种情况,但可以轻松完成解决方法。我只会举一个例子,你可以根据自己的需要和模型进行调整。
首先,声明Enum
。
enum SaveChoice
{
Undefined,
Save,
DoNotSave
}
然后,在您的班级中创建一个字段/属性。同样,这不是最明智的设计选择,但它可以作为一个例子。
SaveChoice _currentChoice;
然后,修改您的CommandInvokeHandler
方法:
void CommandInvokedHandler(IUICommand command)
{
// Display message showing the label of the command that was invoked
switch (command.Label)
{
case "Yes":
var rootPage = this;
if (rootPage.EnsureSnapped())
_currentChoice = SaveChoice.Save;
break;
case "No":
_currentChoice = SaveChoice.DoNotSave;
break;
default:
_currentChoice = SaveChoice.Undefined;
// Not sure what to do, here.
break;
}
}
最后,修改您的New_Click
方法:
//Continues from dialog.CancelCommandIndex = 2;
// Show it.
await dialog.ShowAsync();
if (_currentChoice == SaveChoice.Save) SaveNewFileAs();
答案 1 :(得分:1)
您可以在调用文件选择器之前引入一个小延迟,以确保消息对话框已结束。
await Task.Delay(10);
StorageFile file = await saver.PickSaveFileAsync();