0

这张图是android的tabview这是在枢轴控件中的类似 android 的 tabview

第一张图片是android的tabview
第二张图片是android-like tabview,在pivot control
tabview在pivot page网格
中我想要一个结果就像第二张图片
任何建议都会很棒!!!! !
谢谢

<phone:PhoneApplicationPage 
    x:Class="ewlan.PivotMainPage"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
    xmlns:controls="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
    mc:Ignorable="d" 
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Portrait"  Orientation="Portrait"
    shell:SystemTray.IsVisible="False">



    <Grid x:Name="LayoutRoot" Background="Transparent">

//what's in here?
//i know pivot
//what i need to know is what in the pivot.item
//hope u can know my meanings,any suggestions will be great

    </Grid>
4

1 回答 1

2

好吧,如果您创建一个新应用程序并添加一个 Pivot 页面,它将在 Pivot 控件中生成一些页面。我建议您看一下并添加必要的控件。查看MSDN 参考以获取更多信息。你会得到这样的东西:

<!--LayoutRoot is the root grid where all page content is placed.-->
<Grid x:Name="LayoutRoot" Background="Transparent">
    <!--Pivot Control-->
    <controls:Pivot Title="MY APPLICATION">
        <!--Pivot item one-->
        <controls:PivotItem Header="item1">
            <Grid/>
        </controls:PivotItem>

        <!--Pivot item two-->
        <controls:PivotItem Header="item2">
            <Grid/>
        </controls:PivotItem>
    </controls:Pivot>
</Grid>

Pivot 包含 PivotItems,而 PivotItems 又包含您的 UI 元素。

于 2013-02-26T10:12:00.493 回答