Getting and installing PerspectiveGetting and installing Perspective
Download :
License informations
Creating a WPF project using Perspective in Visual Studio 2010 :
- Create a new Windows Application (WPF) .NET Framework 4 project.
- Add a reference on each Perspective assembly (Perspective.Core, Perspective.Wpf, Perspective.Wpf3D).
The XAML namespace of the Perspective classes is "http://www.codeplex.com/perspective".
<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:p="http://www.codeplex.com/perspective"
Title="Window1" WindowState="Maximized">
...
<p:Workshop3D Name="vMain">
...
<p:XyzAxis3D />
</p:Workshop3D>
...