How to: Create a New WPF Browser Application Project
You can create a Windows Presentation Foundation (WPF) application which runs in a browser. This application model is named XAML Browser Application (XBAP). Creating an XBAP project is easy using the Visual Studio IDE.
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. For more information, see Working with Settings.
To create a new WPF Browser Application project
Start Visual Studio 2010.
On the File menu, point to New, and then select Project.
The New Project dialog box appears.
In the Installed Templates pane, expand Visual Basic or Visual C#, and then select Windows.
Above the middle pane, select the target framework from the drop-down list.
In the middle pane, select the WPF Browser Application template.
Note
The WPF Browser Application template in the .NET Framework 4 targets the Client Profile by default. For more information, see .NET Framework Client Profile.
In the Name text box, specify a name for the project.
In the Location text box, specify a folder to save the project.
Click OK.
The WPF Designer for Visual Studio opens and displays Page1.xaml of the project.
Visual Basic Note Every executable file that you create with Visual Basic 2005 contains a namespace with the same name as your project. For more information, see Namespaces in Visual Basic.
On the Debug menu, and select Start Debugging.
A browser window opens and displays the WPF browser application.
Note
If a message box appears warning you that script debugging is disabled, click Yes to continue debugging.
See Also
Tasks
How to: Create a WPF UserControl Library Project
How to: Create a New WPF Application Project
How to: Create a C# WPF Application
Creating a Drawing Application by Using WPF
Concepts
WPF XAML Browser Applications Overview
Other Resources
How to: Create a Sample Project File for a WPF XAML Browser Application