Skip to main content
.NET Framework 4.6.2+

Localizing Your DevExpress-powered .NET App – Your Feedback Matters

We hope to validate a few hypotheses about our Localization Service, Unified Component Installer, overall localization quality, and ways to translate strings in general.

Take the survey Not interested

ModelLocalizationNodesGenerator Class

A Nodes Generator that generates the content of the IModelLocalization node.

Namespace: DevExpress.ExpressApp.Model.NodeGenerators

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

[Browsable(false)]
public class ModelLocalizationNodesGenerator :
    ModelNodesGeneratorBase

#Remarks

This class is a ModelNodesGeneratorBase descendant, that generates first-level child nodes (IModelLocalizationItem nodes) of the Localization node, based on registered IXafResourceLocalizer objects.

To customize the content of the Localization node, implement a Generator Updater for this Nodes Generator by inheriting the ModelNodesGeneratorUpdater<T> class in the following manner:

public class Updater : ModelNodesGeneratorUpdater<ModelLocalizationNodesGenerator> {
    public override void UpdateNode(ModelNode node) {
        // Cast the 'node' parameter to IModelLocalization
        // to access the Localization node.
    }
}

The Generator Updater above should be registered within the overridden ModuleBase.AddGeneratorUpdaters method. The complete example of implementing a Generator Updater for this Nodes Generator is provided in the EnumDescriptor.GenerateDefaultCaptions topic.

For a complete list of available Nodes Generators, refer to the Built-in Nodes Generators topic.

#Inheritance

Object
ModelNodesGeneratorBase
ModelLocalizationNodesGenerator
See Also