使用模板 10时,您有机会通过覆盖该INavigable
方法OnNavigatingFromAsync
并设置args.Cancel
为 true 来取消页面的 ViewModel 导航离开页面,如下所示:
public override Task OnNavigatingFromAsync(NavigatingEventArgs args)
{
// some logic to determine if navigation should be canceled...
args.Cancel = true;
return Task.CompletedTask;
}
这很好用,但是如果我想向用户显示一个模式对话框(解释为什么取消导航),我会将方法修改为:
public async override Task OnNavigatingFromAsync(NavigatingEventArgs args)
{
args.Cancel = true;
ContentDialog dlg = new ContentDialog()
{
Title = "Bad",
Content = "no no no!",
PrimaryButtonText = "OK",
SecondaryButtonText = "NO"
};
await dlg.ShowAsync();
}
这将显示对话框,但导航不会取消。就像 T10 忽略args.Cancel = true;
设置一样。
我在这里做错了吗?我只想显示对话框然后阻止导航..