Walkthrough: Hosting an ActiveX Control in Windows Presentation Foundation by Using XAML
To enable improved interaction with Web browsers, you can use Microsoft ActiveX controls in your WPF-based application. This walkthrough demonstrates how you can use Extensible Application Markup Language (XAML) to host the Microsoft Windows Media Player as a control on a WPF page.
Tasks illustrated in this walkthrough include:
Creating the project.
Creating the ActiveX control.
Hosting the ActiveX control on a Windows Presentation Foundation page.
For a complete code listing of the tasks illustrated in this walkthrough, see Hosting an ActiveX Control in Windows Presentation Foundation by Using XAML Sample.
When you have completed this walkthrough, you will understand how to use Extensible Application Markup Language (XAML) to host ActiveX controls in your WPF-based application.
Note: |
---|
The dialog boxes and menu commands you see might differ from those described in Help, depending on your active settings or edition. To change your settings, choose Import and Export Settings on the Tools menu. |
Prerequisites
To complete this walkthrough, you will need:
Microsoft Windows Media Player installed on the computer where Microsoft Visual Studio 2005 is installed.
Development Tools for .NET Framework 3.0, which enable you to create a WPF application project. For information on installing these tools, see Installation Instructions for the Windows SDK.
Creating the Project
To create and set up the project
Create a Windows Application (WPF) project named HostingAxInWpf.
Add a Windows Control Library project to the application project, and name the project WmpAxLib.
In Solution Explorer, add a reference to the Microsoft Windows Media Player assembly, which is named Wmp.dll.
Open the Toolbox.
Right-click in the Toolbox, and then click Choose Items.
Click the COM Components tab, select the Windows Media Player control, and then click OK to accept the selection.
The Microsoft Windows Media Player control is added to the Toolbox.
In Solution Explorer, right-click the UserControl1 file, and then click Rename.
Change the name to WmpAxControl.cs or WmpAxControl.vb, depending on the language.
If you are prompted to rename all references, click Yes.
Creating the ActiveX Control
Microsoft Visual Studio automatically generates an AxHost wrapper class for a Microsoft ActiveX control when the control is added to a design surface. The following procedure creates a managed assembly named AxInterop.WMPLib.dll.
To create the ActiveX control
In the Windows Forms Designer, open WmpAxControl.
From the Toolbox, add the Microsoft Windows Media Player control to the design surface.
In the Properties window, set the value of the Microsoft Windows Media Player control's Dock property to Fill.
Press F6 to build the control library.
Hosting the ActiveX Control on a Windows Presentation Foundation Page
To host the ActiveX control
In the HostingAxInWpf project, add a reference to the generated ActiveX interoperability assembly.
This assembly is named AxInterop.WMPLib.dll and was added to the Debug folder of the WmpAxLib project when you imported the Microsoft Windows Media Player control.
Add a reference to the WindowsFormsIntegration assembly, which is named WindowsFormsIntegration.dll.
The default location for this file is %programfiles%\Reference Assemblies\Microsoft\Framework\v3.0\WindowsFormsIntegration.dll.
Add a reference to the Windows Forms assembly, which is named System.Windows.Forms.dll.
Replace the code in Window1.xaml with the following code.
The
ax
namespace mapping establishes a reference to theAxInterop.WMPLib
assembly, which contains theAxWindowsMediaPlayer
control. TheAxWindowsMediaPlayer
class is created as a child of the WindowsFormsHost control.<Window x:Class="HostingAxInWpfWithXaml.Window1" xmlns="https://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml" xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms" xmlns:ax="clr-namespace:AxWMPLib;assembly=AxInterop.WMPLib" Title="HostingAxInWpfWithXaml" Loaded="WindowLoaded" > <Grid Name="grid1"> <WindowsFormsHost Name="wfh"> <ax:AxWindowsMediaPlayer x:Name="axWmp"/> </WindowsFormsHost> </Grid> </Window>
Open Window1.xaml.cs, and uncomment the definition of the
WindowLoaded
method.Insert the following code to handle the Loaded event.
private void WindowLoaded(object sender, RoutedEventArgs e) { // Get the AxHost wrapper from the WindowsFormsHost control. AxWMPLib.AxWindowsMediaPlayer axWmp = wfh.Child as AxWMPLib.AxWindowsMediaPlayer; // Play a .wav file with the ActiveX control. axWmp.URL = @"C:\WINDOWS\Media\Windows XP Startup.wav"; }
Press F5 to build and run the application.
See Also
Tasks
Walkthrough: Hosting a Windows Forms Control in Windows Presentation Foundation by Using XAML
Reference
Concepts
Walkthrough: Hosting a Windows Forms Composite Control in Windows Presentation Foundation
Walkthrough: Hosting a Windows Presentation Foundation Control in Windows Forms
Other Resources
Migration and Interoperability How-to Topics
Hosting an ActiveX Control in Windows Presentation Foundation by Using XAML Sample