dashboard-401643-get-started-build-wpf-dashboard-applications-create-a-wpf-dashboard-application-in-net-core-3.md
This tutorial describes how to create the WPF application with the DashboardControl in .NET.
You can create a new .NET project in the console window or use Visual Studio’s template.
Open the console window and follow the steps below:
Create and open a new folder. The folder name is the project name.
Create a WPF project:
Create a solution file:
Add the created .NET project to this solution:
Open the created solution in Visual Studio.
In Visual Studio, create a new project and select WPF App on the start page as the project template.
In the next dialog window, select the target framework.
Right-click the Dependencies node in the Solution Explorer and select Manage NuGet Packages in the invoked context menu.
Register the DevExpress NuGet feed as a package source and select it in the drop-down menu.
Select the DevExpress NuGet feed as a package source drop-down list and go to the Browse page. Install the DevExpress.Wpf.Dashboard package.
The installed libraries are added to the project after installation is complete.
Add the DashboardControl to the MainWindow.xaml file and build the solution.
<Window x:Class="NewWpfApp.MainWindow"
...
xmlns:dxdash="http://schemas.devexpress.com/winfx/2008/xaml/dashboard">
<Grid>
<dxdash:DashboardControl/>
</Grid>
</Window>
Use the DashboardControl.DashboardSource property to load an existing dashboard or follow the instructions below for information on how to create and edit a dashboard in a .NET Project.
Create a Dashboard in Visual Studio (.NET) - shows how to create and edit a dashboard in Visual Studio at design time.
WPF Viewer - describes how to use DashboardControl to display a dashboard in a WPF application.