我目前有下面的代码,可以为 Tile 创建自定义布局。它只调整到中小型而不是宽。
我需要更新代码以支持 Windows Phone 8 的宽磁贴,但我需要能够自定义文本出现的位置。
该代码使用一个模板,我可以在其中更改磁贴的背景和文本的位置。
关于如何使它成为宽瓷砖的任何想法?并且还能够输出多行文本。
ShellTile TileToFind = ShellTile.ActiveTiles.FirstOrDefault(x => x.NavigationUri.ToString().Contains(busStopName.Text));
TileControl frontTile = new TileControl();
TileName = "";
TileName = busStopName.Text;
TileData tileData = new TileData() {Text1 = busStopName.Text };
frontTile.DataContext = tileData;
frontTile.Measure(new Size(173, 173));
frontTile.Arrange(new Rect(0, 0, 173, 173));
var bmp = new WriteableBitmap(173, 173);
bmp.Render(frontTile, null);
bmp.Invalidate();
var isf = IsolatedStorageFile.GetUserStoreForApplication();
var filename = "/Shared/ShellContent/" + busStopName.Text + ".jpg";
using (var stream = isf.OpenFile(filename, System.IO.FileMode.OpenOrCreate))
{
bmp.SaveJpeg(stream, 173, 173, 0, 100);
}
var data = new StandardTileData
{
BackgroundImage = new Uri("isostore:/Shared/ShellContent/" + busStopName.Text + ".jpg", UriKind.Absolute)
};
ShellTile.Create(new Uri("/LiveTimes.xaml?name=" + busStopName.Text, UriKind.Relative), data);