Skip to main content

ReportDesignerLocalizer Class

Provides the means to localize the Report Designer's user interface elements.

Namespace: DevExpress.Xpf.ReportDesigner

Assembly: DevExpress.Xpf.ReportDesigner.v14.2.dll

#Declaration

public class ReportDesignerLocalizer :
    DXLocalizer<ReportDesignerStringId>

#Remarks

You can localize the captions, dialogs and menus used by a Report Designer at runtime, so that you can provide a completely native language interface to your end-users. The runtime interface localization can be performed via the ReportDesignerLocalizer object.

To localize the user interface, you must first create a ReportDesignerLocalizer descendant. Then, override the DevExpress.Utils.Localization.XtraLocalizer<ReportDesignerStringId>.GetLocalizedString method, to provide custom captions to interface elements.

Then, after the proper ReportDesignerLocalizer descendant has been created, assign it to the DevExpress.Utils.Localization.XtraLocalizer<ReportDesignerStringId>.Active property, so that it takes effect.

For more details on DXPrinting localization, see Localization.

See Also