Category Archives: Windows Phone

Saving UI element as jpeg for Windows Phone 8.1

This is an follow-up of the Drawing pad for Windows Phone 8.1 Assume that the content that is needed to save into jpeg is in a scrollviewer, the below would be the implementation on saving the content. It works for most … Continue reading

Posted in C#, Windows Phone, winrt | Tagged , , | Leave a comment

Drawing pad for Windows Phone 8.1

Many had asked on how do we create a drawing pad for Windows Phone 8.1. It is very simple, in fact the code to get it done is exactly the same as that for Windows 8.1 In the xaml, you … Continue reading

Posted in C#, Windows Phone, winrt | Tagged , , | 3 Comments

Adding Custom font for Pivot Header

If you would want to have custom font for the pivot header, you would have to declare the fontfamily separately as shown below in the sample otherwise the displayed font will remain the same. However if the custom font that … Continue reading

Posted in Silverlight, Windows Phone, winrt | Tagged , , | 1 Comment

Hide Silverlight Chart Control Legend

Use the xaml code below to hide the Silverlight Chart Control Legend.

Posted in Silverlight, Windows Phone | Tagged , , | Leave a comment

Emulator couldn’t determine the host IP address

If you encountered the the error “Emulator couldn’t determine the host IP address” when trying to debug windows phone app in the emulator. You may try to head over to Network Connection and ensure that “vEthernet (Internal Ethernet Port Windows … Continue reading

Posted in Windows Phone | Tagged , , , , | 9 Comments

await MessageDialog in the body of a catch clause

A major disadvantage of using MessageDialog is that you need to await it to show the messagebox and when often you would need to display error messages in the catch clause. In normal situation you would be doing the below: … Continue reading

Posted in C#, Windows Phone, winrt | Tagged , , , , | 5 Comments

Checking for Internet Connection

In my previous post where I had shared about checking for Network Connectivity, NetworkInterface.GetIsNetworkAvailable(), however what the method is actually doing is to simple check for network connection and not necessary internet connection. There are situation where there is network … Continue reading

Posted in C#, Windows Phone, winrt | Tagged , | Leave a comment

Using Google Analytics to your Windows Phone Apps

For developers that would like to track the usage of your Windows Phone app that are in the marketplace. Google Analytics is actually a decent choice given that setting up is fairly easy. Simply head over to http://www.google.com/analytics/ and login … Continue reading

Posted in Google, Windows Phone, winrt | Tagged , , | 4 Comments

Windows Phone IP over USB Transport (IpOverUsbSvc) is not running. Retry after starting Windows Phone IP over USB Transport (IpOverUsbSvc) from the services management console.

If you encounter the below error message while developing app for Windows Phone. Error Message: “Windows Phone IP over USB Transport (IpOverUsbSvc) is not running. Retry after starting Windows Phone IP over USB Transport (IpOverUsbSvc) from the services management console.” … Continue reading

Posted in Visual Studio, Windows Phone | Tagged , , , | 44 Comments

Unexpected character encountered while parsing value: <. Path ”, line 0, position 0.

You may encounter “Unexpected character encountered while parsing value: <. Path '', line 0, position 0." when trying to parse Json result that are downloaded from the WebClient method if the data is compressed in GZip. This is because WebClient … Continue reading

Posted in C#, Json, Windows Phone | Tagged , , , , , , , , | Leave a comment