windows-phone-sl-8.1

New Live tiles don't work in Windows Phone Silverlight 8.1 apps?

瘦欲@ 提交于 2020-02-02 03:08:13
问题 So when I was watching this video from BUILD I thought it's gonna be easy... But I can't seem to get the tile of my WP Silverlight 8.1 app to change by doing the following. const string xml = "<tile>" + "<visual>" + "<binding template='TileSquareText01'>" + "<text id='1'>testing 123</text>" + "</binding> " + "</visual>" + "</tile>"; var xmlDoc = new XmlDocument(); xmlDoc.LoadXml(xml); var tileNotification = new TileNotification(xmlDoc); TileUpdateManager.CreateTileUpdaterForApplication()

New Live tiles don't work in Windows Phone Silverlight 8.1 apps?

好久不见. 提交于 2020-02-02 03:08:07
问题 So when I was watching this video from BUILD I thought it's gonna be easy... But I can't seem to get the tile of my WP Silverlight 8.1 app to change by doing the following. const string xml = "<tile>" + "<visual>" + "<binding template='TileSquareText01'>" + "<text id='1'>testing 123</text>" + "</binding> " + "</visual>" + "</tile>"; var xmlDoc = new XmlDocument(); xmlDoc.LoadXml(xml); var tileNotification = new TileNotification(xmlDoc); TileUpdateManager.CreateTileUpdaterForApplication()

How to disconnect Windows Phone 8.1 emulator from network?

泄露秘密 提交于 2019-12-10 19:01:09
问题 I want to test my app when it is disconnected from network (Internet connection). How to simulate the scenario in which phone doesn't have an Internet connection? 回答1: Do the following steps: Go to Network tab of the emulator's Additional Tools . Check Enable Network Simulation to test your app with different network speeds and different signal strengths. In the Network Speed dropdown list, select the option: No network Click Refresh 来源: https://stackoverflow.com/questions/28847408/how-to

Check internet Connection on phone

a 夏天 提交于 2019-12-07 07:43:07
问题 I wanted to check whether my phone can connect to Internet or not. I have seen several questions already. One of those is Question . It says to use NetworkInterface.GetIsNetworkAvailable() this and i tried it. I have disconnected my PC from internet and Also turned off the DataConnection of the emulator but NetworkInterface.GetIsNetworkAvailable() this always returning true. But simultaneouly i also check for NetworkInterfaceType.None and interestingly it is coming null. Can anybody explain

Check internet Connection on phone

隐身守侯 提交于 2019-12-05 12:28:55
I wanted to check whether my phone can connect to Internet or not. I have seen several questions already. One of those is Question . It says to use NetworkInterface.GetIsNetworkAvailable() this and i tried it. I have disconnected my PC from internet and Also turned off the DataConnection of the emulator but NetworkInterface.GetIsNetworkAvailable() this always returning true. But simultaneouly i also check for NetworkInterfaceType.None and interestingly it is coming null. Can anybody explain where i am missing info ? Attempt : - public static void CheckNetworkAvailability() { // this is coming

New Live tiles don't work in Windows Phone Silverlight 8.1 apps?

北城以北 提交于 2019-12-05 11:41:07
So when I was watching this video from BUILD I thought it's gonna be easy... But I can't seem to get the tile of my WP Silverlight 8.1 app to change by doing the following. const string xml = "<tile>" + "<visual>" + "<binding template='TileSquareText01'>" + "<text id='1'>testing 123</text>" + "</binding> " + "</visual>" + "</tile>"; var xmlDoc = new XmlDocument(); xmlDoc.LoadXml(xml); var tileNotification = new TileNotification(xmlDoc); TileUpdateManager.CreateTileUpdaterForApplication().Update(tileNotification); Please note I've also created a Windows RunTime Windows Phone 8.1 with exactly