المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : Localizing C# win forms application



C# Programming
10-27-2009, 08:50 AM
With GUI controls to localize the ******** it needs only to set Form->Localizable to true and selecting any specific ******** will enable us to edit GUI controls Text properties.

The corresponding satellite assemblies are created automatically and placed into say es-SP or de-AU folders.

How to perform the same with string resources? that these ones will be put inside those already compiled satellites.

MSDN help relates only manual creation of such resources with al.exe tool and generating say MyApp.resources.dll from the scratch.

It will give us 2 MyApp.resources.dll files, one from al.exe and the other from all GUI localized forms.

There should be the same way to allow to add to the project such string resources for every culture we are targeting without al.exe usage?


????????