How do I get a list of all languages that my Windows Forms application has been localized to?
Posted
by
Andrei B
on Stack Overflow
See other posts from Stack Overflow
or by Andrei B
Published on 2011-01-07T21:17:19Z
Indexed on
2011/01/07
21:54 UTC
Read the original article
Hit count: 151
I have localized localized a Form into two language by setting the Localizable property to True and setting the Language from (Default) to (Dutch(Netherlands)), and I changed the control texts.
Visual Studio generated the resource files and compiles them into the application.
I need to get a simple list of all the languages that my form has been localized into. Currently it would be just two English and Dutch, but more may come. I need to programatically get a list of "what languages my application is localized into". Do I look into the resource files or use ResourceManager or what?
Thanks!
© Stack Overflow or respective owner