novembre 2011 Blog Posts

Debug a Windows Phone application invoked from a secondary tile

Adding a secondary tile that ‘deep links’ into your application is a trivial task and can be done in just a few lines of code… private void button1_Click(object sender, RoutedEventArgs e){ ShellTile tile = ShellTile.ActiveTiles.FirstOrDefault(x => x.NavigationUri.ToString() == "/Page2.xaml"); if (tile == null) { StandardTileData secondaryTile = new StandardTileData { Title = "My app", BackgroundImage...

posted @ giovedì 24 novembre 2011 11:26 | Feedback (10)