NuGet is awesome! There are so many packages though that it’s very difficult to
know which ones are useful and which can be missed.
Therefore I have created a list of the NuGet packages that I find most useful
when developing for Windows Phone...
Earlier I wrote a blog post on a specific method to implement code sharing
between Windows Store and Windows Phone applications
[https://www.kenneth-truyers.net/2013/02/24/patterns-for-sharing-code-in-windows-phone-and-windows-8-applications/]
.
In this post I want to zoom out a little bit and look at the different...
Tombstoning your application data in Windows Phone can be tricky when you are
using the MVVM pattern. In order to save your data you have to do it between the
NavigatedTo and NavigatedFrom events of the page. In your ViewModel you don’t
have access...
Background
With the latest batch of releases in Windows Phone 8 and Windows 8 Microsoft has
been trying to close the gap between both development platforms. (The old “write
once, run everywhere”-idea)
Although both platforms are based on the same Windows 8 kernel, there...
In my previous post I explained how you could use “Extract Interface” and “
Subclass and override” as effective techniques for breaking dependencies and get
existing code under test. In some situations there are other methods either more
appropriate or easier to implement.
Simplify Parameters
When...