Oliver Friedrich
Oliver Friedrich

Reputation: 9250

How to stop DataGridView from polluting my Designer file with column controls?

I'm sure you know the problem, as soon as a BindingSource is connected to a DataGridView the DataGridView generates columns for each Property found in the Type of the BindingSource's DataSource and adds that crap to the Form.Designer.cs file.

We only use run time generated columns, the clutter in the designer file is just waste of code, so how can we stop this "feature" of the DataGridView in WinForms?

Upvotes: 0

Views: 507

Answers (2)

DRapp
DRapp

Reputation: 48169

DataGridView.AutoGenerateColumns = false

Upvotes: 0

Related Questions