Changing the language of WinForms applications at run time

Can I change the language of a localized WinForms application at run time? I tried using the method described here: http://www.dotnetcurry.com/ShowArticle.aspx?ID=174 , but, for example, the control hints are not updated. I am sure that I may also face other problems.

Is there a safe (0 bugs) way to do this?

+4
source share
1 answer

Guy Smith-Ferrier wrote a book on .NET internationalization (literally), and here is the code to solve it: http://www.dotneti18n.com/Downloads.aspx

In my experience, it does not work perfectly, does not work, for example, using DevExpress controls.

+2
source

Source: https://habr.com/ru/post/1332361/


All Articles