0

この写真はアンドロイドのタブビューですこれは、ピボットコントロールでAndroidのようなタブビューです

最初の画像はAndroidのタブビューです。2
番目の画像はAndroidのようなタブビューで、ピボットコントロールの
タブビューはピボットページグリッド
にあります 。2番目の画像と同じように結果を表示したいのですが、
どんな提案でも素晴らしいでしょう!!!! !!
ありがとう

<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

新しいアプリケーションを作成してピボットページを追加すると、ピボットコントロールにいくつかのページが生成されます。それを見て、必要なコントロールを追加することをお勧めします。詳細については、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が含まれており、Pivo​​tItemsにはUI要素が含まれています。

于 2013-02-26T10:12:00.493 に答える