Click here to Skip to main content
15,881,248 members
Articles / Desktop Programming / WPF

WPF 3D FlipPanel

Rate me:
Please Sign up or sign in to vote.
5.00/5 (45 votes)
13 Mar 2012CPOL12 min read 122.3K   7.8K   94  
WPF Implementation of the spinning panel frequently used on the iPhone
In this article, you will find a demo of a VB.NET way to duplicate the spinning panel effect widely used on the iPhone to let a panel host content both on its front and its back.
<Application x:Class="Bornander.UI.Test.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:c="clr-namespace:Bornander.UI.Test.Converters"
             StartupUri="MainWindow.xaml">
    <Application.Resources>
        <c:DoubleToAmountConverter x:Key="doubleToAmount"/>
        <c:DoubleToSignedPercentageConverter x:Key="doubleToSignedPercentage"/>
    </Application.Resources>
</Application>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Sweden Sweden
Article videos
Oakmead Apps Android Games

21 Feb 2014: Best VB.NET Article of January 2014 - Second Prize
18 Oct 2013: Best VB.NET article of September 2013
23 Jun 2012: Best C++ article of May 2012
20 Apr 2012: Best VB.NET article of March 2012
22 Feb 2010: Best overall article of January 2010
22 Feb 2010: Best C# article of January 2010

Comments and Discussions