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?
Have you tried setting the form’s
Localizableproperty 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.