如何为Windows Phone 8.1 Flip制作实时磁贴?
我有这段代码,但不知道在哪里添加它。或者,如果还有什么需要我实施的话。
FlipTileData TileData = new FlipTileData()
{
Title = "[title]",
BackTitle = "[back of Tile title]",
BackContent = "[back of medium Tile size content]",
WideBackContent = "[back of wide Tile size content]",
Count = 2,
SmallBackgroundImage = new Uri("/Assets/Tiles/ApplicationIcon.png", UriKind.Relative),
BackgroundImage = new Uri("/Assets/Tiles/FlipCycleTileMedium.png", UriKind.Relative),
BackBackgroundImage = new Uri("/Assets/Tiles/CycleImage1Medi.png", UriKind.Relative),
WideBackgroundImage = new Uri("/Assets/Tiles/CycleTileLarge.png", UriKind.Relative),
WideBackBackgroundImage = new Uri("/Assets/Tiles/CycleImage1Wide.png", UriKind.Relative),
};
我想从这里做什么?谢谢你的帮助!
答案 0 :(得分:1)