0

我有以下代码用于在 Windows Phone 8 上添加磁贴,但我无法显示磁贴。

CycleTileData cycletile = new CycleTileData();
cycletile.Title = "Test";
cycletile.SmallBackgroundImage = new Uri(root.data[0].user.profile_picture,UriKind.RelativeOrAbsolute); 
4

1 回答 1

0

您需要使用ShellTile.Create()将磁贴添加到开始屏幕。设置 CycleImages 属性也无妨。

List<Uri> list = [your image list];
Uri smallImage = [your image];

CycleTileData tileData = new CycleTileData() 
{ 
    Title = group.Title, 
    SmallBackgroundImage = smallImage
    CycleImages = list 
 }; 

 ShellTile.Create(new Uri(NavSource, UriKind.Relative), tileData, true); 

Microsoft Dev CenterWindows Phone Geek上有很多示例

于 2013-02-08T16:23:50.603 回答