在ContentPage Xamarin跨平台应用程序中使用选项卡

时间:2016-10-09 11:05:34

标签: c# xamarin xamarin.android cross-platform

我有一个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>

是否有可能在此页面中显示三个列表框项目作为标签

0 个答案:

没有答案
相关问题