0

I have application written in Winform(c#) with roughly 40-50 forms, every form has a .resx file for French language.

I want my application forms (texts, buttons etc) to be in English. I can do that manually but is there a simple, quicker way of doing it.

iltaf khalid
  • 9,928
  • 5
  • 30
  • 34

1 Answers1

0

If you already have the resources in resx files, just add resx files for english and translate them. Then set the CurrentUICulture to english and all the strings will come from the english resources instead of the default ones.

https://msdn.microsoft.com/en-us/library/aa992030.aspx

Alex Paven
  • 5,539
  • 2
  • 21
  • 35
  • Actually this is what I am trying to avoid because there are so many .RESX files and it will do take time to convert so many files. – iltaf khalid Jun 22 '17 at 11:05
  • 1
    Well... you're not converting are you? Just making copies of those files. Then modify the copies. I should have mentioned this to be honest. – Alex Paven Jun 22 '17 at 15:06