views:

22

answers:

1

Hello, I want to generation automatically Resx files for my project, I've heared that there's program which does it. Can anyone tell me it's name?

+1  A: 

The only program I know is Visual Studio. You can easily create your own program by using the ResXResourceWriter class.

Hans Passant
Let's see, I have a form, with labels, buttons etc. with French text meanings. I Have a resx file, where is all this information.. now I want to translate this meanings to English. I need resx file with all those strings. That's why I need program to generate automatic resx depending on first one. If there is other solution of that, if I can write something in my source and it will do that please tell me.
scatterbraiin
Windows Forms already has *great* support for that. Set the Localizable property of the form to True, change the Language property. This automatically generates the .resx files and the satellite assemblies.
Hans Passant