如何在UWP Template 10应用程序中取消导航?我们正尝试取消ViewModel中未保存数据(IsDirty
)的导航。
public class ViewModel : ViewModelBase
{
public override async Task OnNavigatingFromAsync(NavigatingEventArgs args)
{
if (this.IsDirty)
{
ContentDialog errorDialog = new ContentDialog();
errorDialog.Title = "Save?";
errorDialog.Content = "If you continue you will lose unsaved changes";
errorDialog.PrimaryButtonText = "Cancel";
errorDialog.SecondaryButtonText = "Continue";
ContentDialogResult answer = await errorDialog.ShowAsync();
if (answer == ContentDialogResult.Primary)
args.Cancel = true;
}
await Task.CompletedTask;
}
但导航未取消。如果我们省略对话框,则可以取消导航。如何取消导航远离ViewModel以响应对话框?
答案 0 :(得分:0)
有人和你有同样的问题。 https://github.com/Windows-XAML/Template10/issues/1307
它已在1.1.13(预览版)中得到解决。所以你需要更新nuget包。