Open
Description
Allow users to easily open dialogs in different languages. The behavior should be the same as using the standard dialogs in Windows Forms.
A possible workaround for now is to call SetThreadUILanguage
with the desired Windows Language Code Identifier (LCID):
For example, for French:
[DllImport("Kernel32.dll", CharSet = CharSet.Auto)]
static extern System.UInt16 SetThreadUILanguage(System.UInt16 LangId);
SetThreadUILanguage(1036); // French
Originally reported by @DineshSolanki via #50