在页面的OnAppearing()事件处理程序中,如果满足某个条件,我想重定向到另一个页面。但是,我得到一个错误,说导航操作仍然挂起。我找不到ShellContent项上的事件,比如要拦截的OnClick()事件。
ftf50wuq1#
您可以像这样使用async方法。
async
protected override async void OnAppearing() { base.OnAppearing(); if (true) { await Task.Delay(1000); await Shell.Current.GoToAsync($"//LoginPage"); } }
字符串
1条答案
按热度按时间ftf50wuq1#
您可以像这样使用
async
方法。字符串