首页 > Windows开发 > 详细

Windows Phone Sliding Effect

时间:2014-09-16 08:05:00      阅读:380      评论:0      收藏:0      [点我收藏+]

bubuko.com,布布扣

 

<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0" Background="Red">
    <Grid.RowDefinitions>
        <RowDefinition />
        <RowDefinition />
    </Grid.RowDefinitions>
    <phone:Pivot Margin="0,-24,0,0">
        <phone:PivotItem Background="Blue">
            <StackPanel>
                <TextBlock Text="Transition content 1" />
            </StackPanel>
        </phone:PivotItem>
        <phone:PivotItem Background="Brown">
            <StackPanel>
                <TextBlock Text="Transition content 2" />
            </StackPanel>
        </phone:PivotItem>
    </phone:Pivot>

    <StackPanel Grid.Row="1" Margin="12,0,12,0">
        <TextBlock Text="Fixed content" />
    </StackPanel>
</Grid>

  

Swiping on the top box will animate as the standard pivot animation.

If you don‘t want the user to be able to flick and rather control the two states programmatically then you can simply add IsHitTestVisible="False" on the root pivot control then set the SelectedIndex on the pivot to switch between states.

 

Windows Phone Sliding Effect

原文:http://www.cnblogs.com/MinieGoGo/p/3974118.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!