Skip to main content
A newer version of this page is available. .

How to: Show a Custom Form with the WinForms Dashboard Designer

  • 2 minutes to read

This topic describes how to show a custom form as the WinForms Dashboard Designer used to create and modify dashboards in WinForms XAF applications. For instance, it can be required for customizing the menu (adding custom bar items or removing certain default bar items).

Imports DevExpress.DashboardWin

Namespace CustomDashboardDesignerForm.Module.Win
    Partial Public Class CustomDashboardDesignerForm
        Inherits DevExpress.XtraBars.Ribbon.RibbonForm

        Public Sub New()
            InitializeComponent()
        End Sub
        Public ReadOnly Property Designer() As DashboardDesigner
            Get
                Return dashboardDesigner
            End Get
        End Property
    End Class
End Namespace