Localization the Designer
Our sample projects and report templates can help you learn the basics of working with our products.The designer interface can be shown in different languages by adding localization files. This example adds several and selects one culture.
Designer setup. Configure the designer, load the report template, process its callbacks, and connect the save action to the application.
Designer setup. Configure the designer, load the report template, process its callbacks, and connect the save action to the application.
Stimulsoft.Base.Localization.StiLocalization.addLocalizationFile("../localizations/de.xml");
Stimulsoft.Base.Localization.StiLocalization.addLocalizationFile("../localizations/ja.xml");
Stimulsoft.Base.Localization.StiLocalization.addLocalizationFile("../localizations/pt.xml", true);
Stimulsoft.Base.Localization.StiLocalization.cultureName = 'Portuguese';
var designer = new Stimulsoft.Designer.StiDesigner();addLocalizationFile registers each language file, and setting cultureName chooses the active one. Localization files are shipped with the product and can be edited or created, so the designer can speak any language you need.