2
我有點好奇。我是Windows手機開發新手,目前正在嘗試找到適當的方式來爲我的應用程序製作動畫。 我正在使用TurnstileFeatherEffect從WindowsPhoneToolkit爲動畫頁面轉換。將TurnstileFeather應用於Panorama項目slide
現在我不知道我可以用它來動畫全景物品滑動,以及如何? 任何建議將不勝感激。
我有點好奇。我是Windows手機開發新手,目前正在嘗試找到適當的方式來爲我的應用程序製作動畫。 我正在使用TurnstileFeatherEffect從WindowsPhoneToolkit爲動畫頁面轉換。將TurnstileFeather應用於Panorama項目slide
現在我不知道我可以用它來動畫全景物品滑動,以及如何? 任何建議將不勝感激。
這裏的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)
};