码迷,mamicode.com
首页 > Windows程序 > 详细

Windows Phone Sliding Effect

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

标签:des   blog   http   io   ar   div   sp   log   on   

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

标签:des   blog   http   io   ar   div   sp   log   on   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!