This is a migrated thread and some comments may be shown as answers.

RadCycleTileData help

1 Answer 39 Views
LiveTileHelper
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Cristovao
Top achievements
Rank 1
Cristovao asked on 03 Sep 2013, 01:32 PM
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

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 :(

1 Answer, 1 is accepted

Sort by
0
Accepted
Todor
Telerik team
answered on 05 Sep 2013, 10:49 AM
Hi Cristovao,

This is the right approach for using LiveTileHelper with RadCycleTileData but Windows Phone 8' s CycleTileTemplate only supports local URIs and can't be used with remote web URIs.

I hope this information helps. Let me know if I can assist you further.
 
Regards,
Todor
Telerik
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
Tags
LiveTileHelper
Asked by
Cristovao
Top achievements
Rank 1
Answers by
Todor
Telerik team
Share this question
or