如何更新Mango动态磁贴时间表中的BackContent?
我在这里看到: 可以我使用本地数据更新 Mango 中的动态磁贴? 如何在本地更新动态磁贴。
现在,我已经设置了
var newData = new StandardTileData()
{
Title = "BrTime "+dt.Hour+":"+dt.Minute+":"+dt.Second,
BackgroundImage = new Uri("background.png", UriKind.Relative),
BackContent = "Time "+dt.Hour+":"+dt.Minute+":"+dt.Second,
BackTitle = "The Back",
BackBackgroundImage = new Uri("background.png", UriKind.Relative)
};
当调度程序更新图块时,我需要更新图块的 BackContent
属性。我该怎么做呢?现在仍然是瓷砖创作的时代。
I have seen here: Can I update a live tile in Mango using local data? how to update live tile locally.
Now, I've set
var newData = new StandardTileData()
{
Title = "BrTime "+dt.Hour+":"+dt.Minute+":"+dt.Second,
BackgroundImage = new Uri("background.png", UriKind.Relative),
BackContent = "Time "+dt.Hour+":"+dt.Minute+":"+dt.Second,
BackTitle = "The Back",
BackBackgroundImage = new Uri("background.png", UriKind.Relative)
};
Now I would need to update the BackContent
property of the tile when the scheduler updates the tile. How can I do it? It still remains the time of tile creation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Cris,
你如何更新你的瓷砖?如果使用 ShellTileSchedule,则只能更新图块前面的背景图像。请参阅此帖子:http://msdn.microsoft.com/ en-us/library/ff769548(VS.92).aspx。
不是解决方案,但希望它有所帮助!
Cris,
How are you updating your tiles? If using ShellTileSchedule, only the Background Image of the front of tile may be updated. See this post: http://msdn.microsoft.com/en-us/library/ff769548(VS.92).aspx.
Not the solution, but hope it helps!
我不明白您想要做什么,我将在您的磁贴上显示您用于我的应用程序之一的代码。
在构造函数的开头添加
I do not understand you're trying to do, I'll show the code you use for one of my apps on your tile.
In the opening of the constructor add