1

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?

Cody Gray - on strike
  • 239,200
  • 50
  • 490
  • 574
Presidenten
  • 6,327
  • 11
  • 45
  • 55

1 Answers1

2

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.

Cody Gray - on strike
  • 239,200
  • 50
  • 490
  • 574