Copyright © 2013-2017 MultiMedia Soft

Adding the component to a WPF project

Previous pageReturn to chapter overviewNext page

As you are probably aware XAML & C# codebehind for Windows Presentation Foundation (WPF) does not have a container form like Winforms applications, so the controls toolbox is not available. This means you cannot just drag the control onto a form and have Visual Studio automatically instantiate it

 

The XAML code is what is used to generate the "form" and it is here that you need to instantiate our control:

 

Create a "WPF Application" project, named by default "WpfApplication1"
This will create two files, Window1.xaml and Window1.xaml.cs
On the Solution Explorer sidebar, right-click the "References" section, select the "Add reference" item from the context menu and, from the "Add Reference" window, manually add the following references to the project:
AudioWaveformAnalyzer
System.Windows.Forms
WindowsFormsIntegration

 

 

Modify the original XAML file with the following code (in red new added lines):

 

<Window x:Class="WpfApplication1.Window1"

xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

xmlns:as="clr-namespace:AudioWaveformAnalyzer;assembly=AudioWaveformAnalyzer"

xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"

xmlns:wfi="clr-namespace:System.Windows.Forms.Integration;assembly=WindowsFormsIntegration"

Title="Window1" Height="300" Width="300"

>

<Grid>

  <wfi:WindowsFormsHost Name="wfHost" Margin="1,0,0,0">

        <as:AudioWaveformAnalyzer x:Name="AudioWaveformAnalyzer1"/>

    </wfi:WindowsFormsHost>

</Grid>

</Window>

 

The XAML code above will instance the Audio Waveform Analyzer component inside the WindowsFormsHost object
The Window1.xaml.cs file, which is the codebehind file, is the place where you can initialize the component when the WindowsFormsHost object is loaded:
In the small sample below, where the "Loaded" event of the WindowsFormsHost object has been handled, you can see the correct place to initialize the component and, just for testing, to display its about box:

 

namespace WpfApplication1

{

  /// <summary>

  /// Interaction logic for Window1.xaml

  /// </summary>

  public partial class Window1 : Window

  {

     public Window1()

     {

        InitializeComponent();

     }

   

     private void WindowsFormsHost_Loaded(object sender, RoutedEventArgs e)

     {

// just in case, check if the editor component is already added to the WindowsFormsHost component

if (this.AudioWaveformAnalyzer1.Handle == IntPtr.Zero)

 // manually add the control to the WindowsFormsHost element

 wfHost.Child = AudioWaveformAnalyzer1;

 

        AudioWaveformAnalyzer1.InitWaveformAnalyzer();

         AudioWaveformAnalyzer1.AboutBox();

     }

  }

}

 

 

An example of usage of our component inside a basic WPF project can be found inside the WaveformAnalyzerTest sample under the "Samples WPF" subdirectory.