I am a Silverlight developer and in Silverlight we made use of PlanarProjection to create such effects. Infact this is the article along with demo project in Silverlight by Mike Taulty:
How can we make such a realistic control in WPF because there is no PlanarProjection (2.5D) in WPF4. Can you provide me any code or guideline or sample project along with source code?
WPF lacks the
PlaneProjectionof 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
PlaneProjectionand then the same technique will work for both Silverlight and WPF. Until then, you can easily adapt the simplePlaneProjectionflipper to use the same API asContentControl3Das a compromise.