This is a mirror of official site: http://jasper-net.blogspot.com/

Silverlight 3D: Using Plane Projection

| Monday, April 18, 2011
In this article, we will see how to use 3D Plane Projection in Silverlight. For this demonstration I am using the following controls – 1) Border 2) DataGrid 3) Chart control from Silverlight toolkit and 4) Hyperlink button.
I am also using two story boards for creating a ‘Double Animation’.

So the first step is to create a Silverlight project. I am fond of Microsoft Expression Blend, although I am not a good designer :) Anyways, once you create a Silverlight project, add a class with the name ‘CustomerSales’ and add few properties to the same class as shown below –

image%5B4%5D.png?imgmax=800

In this demonstration I am showing some sales records for different cities. Once you click the row, the total sales for Q1, Q2, Q3 and Q4 is shown in a chart format with some nice animation using Silverlight Plane Projection.

Now let’s import two namespaces in our sample as shown below – 

image%5B10%5D.png?imgmax=800

Now go to your MainPage.xaml and replace <Grid></Grid> with the code shown below – 

<UserControl.Resources> 
<Storyboard x:Name="salesDGRowSelected"> 
    <DoubleAnimation Duration="0:0:3" To="-50" 
        Storyboard.TargetProperty="(UIElement.Projection).(PlaneProjection.RotationX)" 
        Storyboard.TargetName="dgAllSales" d:IsOptimized="True"/> 
    <DoubleAnimation Duration="0:0:3" To="0" 
        Storyboard.TargetProperty="(UIElement.Projection).(PlaneProjection.RotationX)" 
         Storyboard.TargetName="border" d:IsOptimized="True"/> 
    <DoubleAnimation Duration="0:0:3" To="1" 
        Storyboard.TargetProperty="(UIElement.Opacity)" Storyboard.TargetName="border" 
        d:IsOptimized="True"/> 
    <DoubleAnimation Duration="0:0:3" To="-30" 
        Storyboard.TargetProperty="(UIElement.Projection).(PlaneProjection.RotationY)" 
        Storyboard.TargetName="border" d:IsOptimized="True"/> 

Read more: DevCurry

Posted via email from Jasper-net

0 comments: