pivot控件

    <phone:PhoneApplicationPage.Resources>
        <ResourceDictionary>
            <Style x:Key="myFont" TargetType="TextBlock">
                <Setter Property="FontSize" Value="40" />
                <Setter Property="Margin" Value="0 0 0 30" />
            </Style>
        </ResourceDictionary>
    </phone:PhoneApplicationPage.Resources>
    
    
            <!--LayoutRoot 是包含所有页面内容的根网格-->
    <Grid x:Name="LayoutRoot" Background="Transparent">
        <!--Title左上角小标题,一般大写开头-->
        <controls:Pivot Name="pivot1" Title="PivotDemo">
            <!--Item Header标题-->
            <controls:PivotItem Header="系统">
                <Grid>
                    <StackPanel>
                        <TextBlock Text="铃声 + 声音"  Style="{StaticResource myFont}"/>
                        <TextBlock Text="主题" Style="{StaticResource myFont}"/>
                        <TextBlock Text="飞行模式"  Style="{StaticResource myFont}"/>
                        <TextBlock Text="Wi-Fi"  Style="{StaticResource myFont}"/>
                        <TextBlock Text="蓝牙" Style="{StaticResource myFont}"/>
                        <TextBlock Text="网络共享" Style="{StaticResource myFont}"/>
                    </StackPanel>
                </Grid>
            </controls:PivotItem>
            <controls:PivotItem Header="应用程序">
                <Grid>
                    <StackPanel>
                        <TextBlock Text="Internet Explorer"  Style="{StaticResource myFont}"/>
                        <TextBlock Text="Office" Style="{StaticResource myFont}"/>
                        <TextBlock Text="人脉"  Style="{StaticResource myFont}"/>
                        <TextBlock Text="后台任务"  Style="{StaticResource myFont}"/>
                        <TextBlock Text="图片 + 相机" Style="{StaticResource myFont}"/>
                        <TextBlock Text="地图" Style="{StaticResource myFont}"/>
                    </StackPanel>
                </Grid>
            </controls:PivotItem>
        </controls:Pivot>
    </Grid>

效果图,模仿setting,

panorama控件 和 pivot 控件区别

 

posted @ 2012-08-15 21:57  Mr.Lin_♪  阅读(200)  评论(0)    收藏  举报