vote up 0 vote down star

I have a datagridview which im binding DataTable to. What I want do is add an extra column which will fill out the remaining gap in the windows form. At the moment I only have 3 columns so the width of all the columns is only about half the size of the windows form.

flag

50% accept rate

2 Answers

vote up 3 vote down check

After databinding the DataTable to the DataGridView, set the desired column's AutoSizeMode to Fill.

        DataTable dt = new DataTable("Table1");
        dt.Columns.Add("A");
        dt.Columns.Add("B");
        dt.Columns.Add("C");
        dt.Rows.Add(1, 2, 3);
        this.dataGridView1.DataSource = dt;
        this.dataGridView1.Columns[dataGridView1.Columns.Count - 1].AutoSizeMode = DataGridViewAutoSizeColumnMode.Fill;

You may also want to set the DataGridView to Anchor to the Right and Bottom sides of the form (as well as the left and top) so that the DGV gets bigger as the form is resized. (or set Dock to Fill).

link|flag
Only reason I can see why this got downvoted is that it doesn't precisely answer the OP "how to add extra column" - even though it's an even better solution. :( +1 from me, anyway... – GalacticCowboy Dec 17 '08 at 17:46
vote up -1 vote down

foson answer was perfect. Thanks alot.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.