Hello,
In our app, we need to handle multiple languages, so we use the .resx files to automaticly localize our strings.
Is it possible to achieve this with Actipro strings?
I know we can redefine strings like this :
ActiproSoftware.Products.Shared.SR.SetCustomString(ActiproSoftware.Products.Shared.SRName.UICommandCloseWindowText.ToString(), "Fermer");
ActiproSoftware.Products.Shared.SR.SetCustomString(ActiproSoftware.Products.Shared.SRName.UICommandMaximizeWindowText.ToString(), "Maximiser");
ActiproSoftware.Products.Shared.SR.SetCustomString(ActiproSoftware.Products.Shared.SRName.UICommandMinimizeWindowText.ToString(), "Minimiser");
But this is static — if the language changes, the strings won’t update automatically.
Thanks.