Skip to main content
.NET 8.0+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ModuleBase.ResourcesExportedToModel Property

Provides access to a collection of Resource Localizers used in the current module to extend the Application Model’s IModelLocalization node.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v24.2.dll

NuGet Package: DevExpress.ExpressApp

#Declaration

public List<Type> ResourcesExportedToModel { get; set; }

#Property Value

Type Description
List<Type>

An IList<Type> collection of Resource Localizer types.

#Remarks

By default, the Localization node allows you to localize only internal XAF resources. However, you can extend this node with child nodes that will allow you to localize the resource strings of the required control used in your application. For this purpose, use the XafApplication.ResourcesExportedToModel property of your application object. A module’s ResourcesExportedToModel property is an alternative to the application’s ResourcesExportedToModel property. It also can be set at design time and runtime. However, the localization resources added in a module cannot be removed in another module or application. They can be canceled in the same module only.

See Also