dashboard-devexpress-dot-dashboardwin-dot-dashboardviewer-dot-loaddashboard-x28-system-dot-io-dot-stream-x29.md
Loads a dashboard from a stream.
Namespace : DevExpress.DashboardWin
Assembly : DevExpress.Dashboard.v25.2.Win.dll
NuGet Package : DevExpress.Win.Dashboard
public void LoadDashboard(
Stream stream
)
Public Sub LoadDashboard(
stream As Stream
)
| Name | Type | Description |
|---|---|---|
| stream | Stream |
A Stream object that contains the dashboard.
|
You can open a dashboard in one of the following ways.
All these actions raise the DashboardViewer.DashboardChanged event.
To access the dashboard after it has been opened, use the DashboardViewer.Dashboard property.
To save a dashboard to a file or a stream, use the Dashboard.SaveToXml method. You can use the Dashboard.LoadFromXml method to load a dashboard definition from a file or a stream to the existing dashboard.
Note
If the DashboardDesigner / DashboardViewer control is placed in the MDI child form, load dashboards in the Shown event handler instead of Load.
See Also