The viewer and designer interface can be shown in different languages by loading localization files.

Loading a localization. Point StiOptions.Localization.Load to the desired .xml file. The whole Stimulsoft interface switches to that language:
StiOptions.Localization.Load(comboBoxLocalizations.Text);

The localization files are ordinary XML files shipped with the product; you can enumerate the ones you ship and offer them to the user:
foreach (var fileName in Directory.GetFiles(@"Localization"))
{
    comboBoxLocalizations.Items.Add(fileName);
    if (fileName.EndsWith("en.xml"))
        comboBoxLocalizations.SelectedItem = fileName;
}

Any file can be edited or translated to fit your own wording, and calling Load again at run time re-applies the chosen language immediately.

By using this website, you agree to the use of cookies for analytics and personalized content. Cookies store useful information on your computer to help us improve efficiency and usability. For more information, please read the privacy policy and cookie policy.