WPF lacks the PlaneProjection of Silverlight. It's annoying that these incompatibilities exist, but admittedly the problem is usually Silverlight lacking a WPF feature. So this time for WPF developers the shoe is on the other foot!
If what you want is PlaneProjection, here is an article that implements a feature with similar capabilities:
which itself also references some other attempts.
But if what you want is a WPF dual-sided content control with flipping similar to the article you linked, you can use Josh Smith's ContentControl3D:
This control can flip front and back content in a very configurable way. I wouldn't be surprised if Mike Taulty's implementation was inspired by it.
Someday WPF may have PlaneProjection and then the same technique will work for both Silverlight and WPF. Until then, you can easily adapt the simple PlaneProjection flipper to use the same API as ContentControl3D as a compromise.