Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/327.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# windows phone 8中带有图像的辅助平铺动画_C#_Windows Phone 8 - Fatal编程技术网

C# windows phone 8中带有图像的辅助平铺动画

C# windows phone 8中带有图像的辅助平铺动画,c#,windows-phone-8,C#,Windows Phone 8,通过执行以下操作,我可以在Windows Phone 8应用程序中创建辅助磁贴: StandardTileData NewTileData = new StandardTileData { BackgroundImage =new Uri(@"Shared/ShellContent/Snow.png", UriKind.Relative), Title = ((CheckBox)sender).Content.ToString(), Count = 1, BackBack

通过执行以下操作,我可以在Windows Phone 8应用程序中创建辅助磁贴:

StandardTileData NewTileData = new StandardTileData
{
   BackgroundImage =new Uri(@"Shared/ShellContent/Snow.png", UriKind.Relative),
   Title = ((CheckBox)sender).Content.ToString(),
   Count = 1,
   BackBackgroundImage =new Uri(@"Shared/ShellContent/Snow.png", UriKind.Relative),
   BackTitle = "Back Title",
   BackContent = "Back Content"
};
我可以为背景图像应用动画吗?我想显示两个图像垂直滚动一个接一个在第二瓷砖在一段时间内。可能吗?如果是这样,有人能给我指出正确的方向吗?

不,你不能

如果您希望它显示这样的图片,请查看cycle互动程序。

谢谢。。为了你的回答。。我是否可以将主磁贴放置为“翻转磁贴”,并将次磁贴放置为“循环”磁贴。。可能吗..不,不要认为这是可能的,因为您在WMAppManifest中指定了要使用的tiletemplate。