如何在mvvm中浏览页面

时间:2019-02-18 09:56:12

标签: c# mvvm xamarin.forms

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部分

我需要从该页面导航到主页,但是此代码不起作用。当我尝试从主页导航到注册页面时,为什么看不到此特定代码有效的问题

0 个答案:

没有答案