This question is locked. New answers and comments are not allowed.
Can you provide more info on how to use the LiveTileHelper with a RadCycleTileData..
I'd like to get images from a external URL (website) and create it...
I tried
but assigning the RadTile.CycleImages = CycleImages; does not works :(
I'd like to get images from a external URL (website) and create it...
I tried
List<Uri> images = new List<Uri>(); RadCycleTileData RadTile = new RadCycleTileData(); int start = 0; int max = 10; foreach (var item in result) { images.Add(new Uri(item.Url, UriKind.Absolute)); start++; if (start >= max) break; } IEnumerable<Uri> CycleImages = images; RadTile.CycleImages = CycleImages; LiveTileHelper.UpdateTile(tile, RadTile);but assigning the RadTile.CycleImages = CycleImages; does not works :(