dashboard-devexpress-dot-dashboardcommon-dot-localization-dot-dashboardlocalizer.md
Gets or sets a localizer object providing localization of the user interface at runtime.
Namespace : DevExpress.DashboardCommon.Localization
Assembly : DevExpress.Dashboard.v25.2.Core.dll
NuGet Package : DevExpress.Dashboard.Core
public static XtraLocalizer<DashboardStringId> Active { get; set; }
Public Shared Property Active As XtraLocalizer(Of DashboardStringId)
| Type | Description |
|---|---|
| XtraLocalizer<DashboardStringId> |
An XtraLocalizer<T> descendant, used to localize the user interface at runtime.
|
To manually localize the Dashboard user interface, create the DashboardLocalizer class descendant, and assign this object to the static Active property.
The following code snippets (auto-collected from DevExpress Examples) contain references to the Active property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
DashboardWinLocalizer.Active = new MyDashboardWinLocalizer();
DashboardLocalizer.Active = new MyDashboardCoreLocalizer();
InitializeComponent();
{
DashboardLocalizer.Active = new MyDashboardLocalizer();
InitializeComponent();
DashboardWinLocalizer.Active = New MyDashboardWinLocalizer()
DashboardLocalizer.Active = New MyDashboardCoreLocalizer()
InitializeComponent()
Public Sub New()
DashboardLocalizer.Active = New MyDashboardLocalizer()
InitializeComponent()
See Also