I have just got a project handed to me where the Visual Studio Windows Forms designer saves most of the properties to the .resx-file instead of the .designer.cs file as usual. Its really irritating when .size and .location is placed in the .resx.

Is there a way to revert this so that everything is placed in the .designer.cs file instead?

link|improve this question

60% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Have you tried setting the form's Localizable property in the Properties Window to "False"?

This corresponds to the form's LocalizableAttribute, which specifies that strings as well as the location and size of controls are saved to a localized .resx file.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.