wp wp8:页面转换 page transitions

阅读更多
首先导入Toolkit.dll文件

将App.xaml.cs中InitializePhoneApplication()函数里的RootFrame进行修改
RootFrame=new TransitionFrame();

引入xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"

上代码:

Slide.xaml

    x:Class="wp8Transaction.Slide"
    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:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    FontFamily="{StaticResource PhoneFontFamilyNormal}"
    FontSize="{StaticResource PhoneFontSizeNormal}"
    Foreground="{StaticResource PhoneForegroundBrush}"
    SupportedOrientations="Portrait" Orientation="Portrait"
    mc:Ignorable="d"
    shell:SystemTray.IsVisible="True"
    xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"
    >

   
   
       
           
           
       


       
       
           
           
       


       
       

       

   


   
       
           
               
           

           
               
           

       

   

   
       
           
               
           

           
               
           

       

   






执行下面方法 可见到滑动效果

private void slideClick(object sender, RoutedEventArgs arg)
        {
            NavigationService.Navigate(new Uri("/Slide.xaml", UriKind.Relative));
        }


关于自定义transition

ITransition接口 实现此接口 重写GetTransition方法

你可能感兴趣的:(wp)