我正在开发一个Xamarin应用程序,我想在我的应用程序中使用Xamarin.Forms.Shell进行导航(路由(。 您是否知道,在任何机会中,检索 Shell 中已注册路由列表的方法是什么?
例如,请考虑以下SimpleAppShell
public partial class SimpleAppShell : Xamarin.Forms.Shell
{
public SimpleAppShell()
{
InitializeComponent();
RegisterExtraRouting();
BindingContext = this;
}
protected void RegisterExtraRouting()
{
Routing.RegisterRoute("//tab-bar-item/tab-2/page-2", typeof(ContentPage2));
Routing.RegisterRoute("//tab-bar-item/tab-3/page-3", typeof(ContentPage3));
}
public override OnAppearing()
{
base.OnAppearing();
PrintMyRoutes(); // TODO: don't know where to get the info from
}
}
以及以下与上述Shell
相关的 XAML 文件
<!--- removed config code for simplicity -->
<TabBar
Route="tab-bar-item">
<Tab
Title="Tab-1"
Route="tab-1"
Icon="tabs_icon.png">
<ShellContent
Route="page-1"
ContentTemplate="{DataTemplate local:ContentPage1}" />
</Tab>
</TabBar>
一旦调用 OnAppearing((,我想在控制台中得到类似以下内容:
//tab-bar-item/tab-1/page-1
//tab-bar-item/tab-2/page-2
//tab-bar-item/tab-3/page-3
在谷歌中查找此主题后,我还没有找到任何东西。
感谢您的支持。
公开路由键的方法internal
,您需要使用反射来调用此方法。
public SimpleAppShell()
{
InitializeComponent();
RegisterExtraRouting();
BindingContext = this;
MethodInfo getRouteKeysMethodInfo = typeof(Routing).GetMethod("GetRouteKeys", BindingFlags.NonPublic | BindingFlags.Static);
string[] routeKeys = (string[])getRouteKeysMethodInfo.Invoke(null, null);
}