我有一个xamarin跨平台应用程序,我的观点在PCL项目中,从我的应用程序的主页我使用此代码导航到新页面
var target = new SelectPage();
Navigation.PushAsync(target);
导航页面的xaml就像这样
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="SelectPage"
NavigationPage.HasBackButton="False">
<Grid>
want to show 3 tabs here
</Grid>
</ContentPage>
是否有可能在此页面中显示三个列表框项目作为标签