Intersoft ClientUI Documentation
LocalizationManager Class
Members 



Provides static properties and instance methods to manage and work with localized resource.
Object Model
LocalizationManager ClassIObservableResource Interface
Syntax
Public Class LocalizationManager 
Dim instance As LocalizationManager
public class LocalizationManager 
public ref class LocalizationManager 
Remarks

ClientUI Localization Manager is a framework that enables you to build dynamic, reliable localized applications. It overcomes the limitations of the Silverlight's built-in localization feature and packed with advanced features such as dynamic localized resource updating, MVVM design pattern support, and more.

The localization manager was built with the key goals described in the following:

To change the application's culture, you set the Culture static property of the LocalizationManager to the desired culture that supported in the project.

The following code example shows how to change the application's Culture to the France culture through a DelegateCommand.

CS
Copy Code
private void ExecuteChangeLanguage(object parameter)
{
     LocalizationManager.Culture = new CultureInfo("fr");
}

For more information about building localizable applications using ClientUI, see Localization Overview.

Inheritance Hierarchy

System.Object
   Intersoft.Client.Framework.LocalizationManager

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

LocalizationManager Members
Intersoft.Client.Framework Namespace

Send Feedback