[]
In this step, you'll create an application using HyperPanel for WPF and Silverlight.
Complete the following steps:
In Visual Studio, select File | New Project.
In the New Project dialog box, select either Windows Desktop or Silverlight from the Templates in the left-hand pane.

New Project Dialog Box
Select WPF Application or Silverlight Application, depending on the template you chose.
Enter a Name for your project, for example "QuickStart", and click OK. In a WPF Application, the MainWindow.xaml file will open.
Add the following assemblies to your application by right-clicking the References folder and selecting Add Reference:
Navigate to the Toolbox and double-click the C1HyperPanel icon to add the panel to the project.
Give your control a name by adding x:Name="c1hp1" to the <c1:C1HyperPanel> tag so that it appears similar to the following:
<c1:C1HyperPanel x:Name="c1hp1"></c1:C1HyperPanel>
By giving it a unique identifier, you'll be able to access the control in code.
Resize your control by adding Height="Auto" Width="Auto" to the <c1:C1HyperPanel> tag so that it appears similar to the following:
<c1:C1HyperPanel x:Name="c1hp1" Height="Auto" Width="Auto"></c1:C1HyperPanel>