是否有可能在 WP7 中添加动态平铺,我在中心获取带有我的徽标的 PNG 文件并为其添加背景颜色?
它应该如下所示:
目前我像这样创建我的瓷砖:
private void addShortcut_Click(object sender, EventArgs e)
{
string Url = GlobalVariables.Uri;
StandardTileData NewTileData = new StandardTileData
{
BackgroundImage = new Uri("img/red.jpg", UriKind.Relative),
Title = "Energy "+GlobalVariables.Name,
Count = 0,
BackTitle = "Radion Energy",
BackContent = "Hitmusic Only!",
BackBackgroundImage = new Uri("img/test.jpg", UriKind.Relative)
};
try
{
// Create the Tile and pin it to Start. This will cause a navigation to Start and a deactivation of our application.
ShellTile.Create(new Uri("/MainPage.xaml?stationName=" + stationName + "&tile=true&name=" + GlobalVariables.Name + "&url=" + Url, UriKind.Relative), NewTileData);
}
catch
{
MessageBox.Show("Channel-Tile exists already.");
}
}
因此,目前背景始终与 Phonestyle 本身具有相同的颜色。(我真的不明白为什么,因为 red.jpg 实际上是一个红色方块。:) 目前我没有徽标,所以它只是 blanc。
谢谢 :)