0
我實現,它通過棱鏡的工作原理與導航的NavigationService:如何以編程方式使用Prism的NavigationService?
protected override void OnInitialized()
{
InitializeComponent();
NavigationService.NavigateAsync("FirstPage?title=FirstPage");
}
protected override void RegisterTypes()
{
Container.RegisterTypeForNavigation<MainPage>("MainPage");
Container.RegisterTypeForNavigation<FirstPage>("FirstPage");
Container.RegisterTypeForNavigation<FirstPage>("SecondPage");
}
在特定的按鈕命令我實現,例如:
_navigationService.NavigateAsync("FirstPage");
很容易,但。如果我想:
轉到第一頁,檢查一下,如果它是真的立即去「第二頁」?它不起作用!按鈕必須點擊,否則導航不起作用
這是一個錯誤,或者我錯過了什麼?
謝謝!