dashboard-402524-get-started-build-winforms-dashboard-applications-create-a-winforms-dashboard-viewer-in-net.md
This tutorial describes how to create a WinForms application with the Dashboard Viewer 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.
mkdir NewWinFormsApp
cd NewWinFormsApp
Create a WinForms project:
dotnet new winforms
Create a solution file:
dotnet new sln
Add the created .NET project to this solution:
dotnet sln add NewWinFormsApp.csproj
Open the created solution in Visual Studio.
In Visual Studio, create a new project and select Windows Forms App on the start page as the project template.
Note
Do not select the Windows Forms App (.NET Framework) template.
In the next dialog window, select the target framework.
Select Manage NuGet Packages in the invoked context menu to invoke the NuGet Package Manager.
Register the DevExpress NuGet feed as a package source and select it in the drop-down menu.
Install the DevExpress.Win.Dashboard.Design package ( DevExpress.Win.Dashboard for projects that target .NET).
The installed libraries are added to the project after installation is completed.
You can create the Dashboard Viewer at design time or in code when you reference the Win.Dashboard.Design package in your project. For projects that reference the DevExpress.Win.Dashboard package, the Dashboard Viewer can only be created in code.
Drag the DashboardViewer control from the DX.22.1: Data & Analytics Toolbox tab and drop it onto the main form.
Click the control’s smart tag and select Dock in parent container in the invoked actions list to allow the Dashboard Viewer to fill the form.
To create the Dashboard Viewer at runtime, add the following code in a Form1.cs file:
using System.Windows.Forms;
using DevExpress.DashboardWin;
//...
DashboardViewer viewer = new DashboardViewer();
this.Controls.Add(viewer);
viewer.Dock = DockStyle.Fill;
Imports System.Windows.Forms
Imports DevExpress.DashboardWin
'...
Private viewer As New DashboardViewer()
Me.Controls.Add(viewer)
viewer.Dock = DockStyle.Fill
Use the DashboardViewer.LoadDashboard method to load an existing dashboard in code.
Create a Dashboard in Visual Studio (.NET) — Shows how to create and edit a dashboard in Visual Studio at design time.
WinForms Viewer — Describes how to prepare the DashboardViewer control to display a dashboard in a WinForms application.