2

我有点好奇。我是 windows phone 开发的新手,目前正试图找到适当的方法来为我的应用程序设置动画。我正在使用WindowsPhoneToolkit中的TurnstileFeatherEffect为页面转换设置动画。

现在我想知道我可以用它来动画全景项目滑动,以及如何?任何建议将不胜感激。

4

1 回答 1

1

这是 TurnstileFeatherEffect 的源代码中感兴趣的部分 here

    /// <summary>
    /// Default list of types that cannot be feathered.
    /// </summary>
    private static IList<Type> _nonPermittedTypes = new List<Type>() 
        { 
            typeof(PhoneApplicationFrame), 
            typeof(PhoneApplicationPage), 
            typeof(PivotItem),
            typeof(Panorama),
            typeof(PanoramaItem)
        };
于 2013-11-30T10:40:01.117 回答