We have created a Class-Library project with some WinForms inside. We translated the Forms via build in VS designer (set Localizable=true).
VS will create the assembly and the different folders for each language with containing satellite resource files.
This assembly will be loaded by an 3-party application.
Now we have the issue, that our Forms won't get localized if we start it via the 3-party application. It seems, that our assembly isn't able to load the resource files from the language sub-directories.
Is it possible to load this resource file by code, so the default localize-mechanism of the WinForms will work?
Edit
If i copy the language folders (de, en, ...) to the main 3-party app folder, everything will work like a charm.