wp7

There are 5 entries for the tag wp7
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)

[WP7] Error 0x81030120 when deploying application to device

If you get error 0x81030120 when deploying an application to a Mango (7.5) device If might depend on presence on ID_CAP_INTEROPSERVICES capabilities inside application manifest, remove it and problem should gone. Technorati Tags: WP7

posted @ martedì 4 ottobre 2011 12:17 | Feedback (6)

SystemTray in WP7-Mango

Jaime Rodriguez in this post describes some new features of the SystemTray class in upcoming WP7 Mango release, I won’t repeat them since Jaime’s post is quite explanatory, I’ve instead investigated more the “Progress” feature mentioned on that post. Here’s how I’ve configured my SystemTray on MainPage.xaml: <phone:PhoneApplicationPage x:Class="SystemTrayBackground.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...

posted @ sabato 4 giugno 2011 10:45 | Feedback (0)

WP7 Factor: Dov'è la tua app?

WP7 Factor è il concorso indetto da Microsoft Italia che oltre a mettere in risalto le vostre applicazioni Windows Phone 7 vi fa vincere uno Zune Pass a settimana e, ad Aprile 2011, un buono acquisto da 3000 euro e 2 da 1000 euro. Aprile è ormai vicino e sono sicuro che parecchi di voi hanno sviluppato app interessanti che meritano di essere premiate, quindi: cosa aspettate? pubblicate la vostra app e segnalatela all’indirizzo wp7factor[@]ugidotnet.org Perchè vi invito a farlo? perchè faccio parte della giuria che selezionerà I vincitori finali e premiare un membro di...

posted @ giovedì 10 marzo 2011 18:41 | Feedback (0)

How to change Windows Phone 7 Startup Page

Quando si crea un nuovo progetto Windows Phone 7 viene automaticamente creata una pagina MainPage.xaml che rappresenta la pagina iniziale dell’applicazione: Nel caso si voglia cambiarla il processo non è esattamente lo stesso di Silverlight, questo perchè la pagina è in realtà ospitata all’interno del Frame di navigazione PhoneApplicationFrame il quale viene impostato come RootVisual allo startup all’interno di App.Xaml.cs 1: private void InitializePhoneApplication() 2: { 3: ...

posted @ giovedì 22 luglio 2010 20:03 | Feedback (0)