/ Published in: C#
Mostrare una tile dall'isolated storage con Windows Phone 7.1
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
client.OpenReadCompleted += (sender, event) => { using (IsolatedStorageFile storage = IsolatedStorageFile.GetUserStoreForApplication()) { using (Stream tileStream = storage.CreateFile("Shared/ShellContent/tile.png")) { evt.Result.CopyTo(tileStream); } } ShellTile tile = ShellTile.ActiveTiles.First(); { }); };