Reputation: 316
Project was initially made in VS2010 and any changes to the windows form (add a button) it updates the InitializeComponent() function where everything is currently kept to build the window instead of the designer.cs file. What kind of setting would have the person used to make it this way in the past?
Upvotes: 1
Views: 67
Reputation: 3424
Scenarios:
Project created in before .NET 3.5 era and later upgraded to .NET 4.0 will still be this way.
UI handcoded.
UI designed in an external tool and finally code copy pasted in to the form's InitializeComponent()
Upvotes: 2