Tag Archives: winrt

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

Checking for Internet Connectivity in Windows 8 C#/winrt

To prevent winrt app from crashing while doing web method due to the lack of Internet Connectivity, always use the below code to check for Internet Connectivity. Declaring the method in App.cs would ease the usage. Ideally the app should … Continue reading

Posted in winrt | Tagged , , , , | 3 Comments