You can register a Windows Media Center application so that it supports a multi-language UI. The display name and description for the application dynamically changes on a multi-lingual system when the user changes the operating system UI language in the Region and Language Control Panel. This method is only valid for locally installed managed-code assemblies.
The title and description attributes of the application and entrypoint elements in the registration XML can be dynamically changed as follows:
@<resourceFile>,-<resourceID>
The following code shows an example of registration XML:
<application title="@c:\Program Files\MyApp\myResources.dll,-101"…> <entrypoint title="@c:\Program Files\MyApp\myResources.dll,-102" description="@%ProgramFiles%\MyApp\myResources.dll,-103"… <category…/> </entrypoint> </application>
See Also