public class RegisterViewModel : BaseViewModel
{
public ICommand Tologinpage { get; set; }
public RegisterViewModel()
{
Tologinpage = new Command(Tologin);
}
private void Tologin()
{
Application.Current.MainPage.Navigation.PushAsync(new MainPage());
}
}
注册模型类
<ImageButton Source="home1.png" HorizontalOptions="End" Grid.Column="2" Grid.Row="0" Command="{Binding Tologinpage}"/>
xaml部分
我需要从该页面导航到主页,但是此代码不起作用。当我尝试从主页导航到注册页面时,为什么看不到此特定代码有效的问题