I am populating a DataGridView control on a Windows Form (C# 2.0 not WPF).
My goal is to display a grid that neatly fills all available width with cells - i.e. no un
Did you try to set up the FillWeight property of your DataGridViewColumns object?
FillWeight
DataGridViewColumns
For example:
this.grid1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill; this.grid1.Columns[0].FillWeight = 1.5;
I think it should work in your case.