Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

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.v20.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