GridDesktop.SetCustomResourceManager

GridDesktop.SetCustomResourceManager method

Set custom resource manager to implement user defined localization

public void SetCustomResourceManager(ResourceManager customResourceManager)
ParameterTypeDescription
customResourceManagerResourceManagerthe custom resource manager.

Remarks

To create a customized resource file ,Please follow the format in GridDesktopResource.resx.

Examples

[C#]
ResourceManager rm = new ResourceManager("yourapp.customtlocale", Assembly.GetExecutingAssembly());
gridDesktop1.SetCustomResourceManager(rm);

See Also