Search code examples
.netwinformsdatagridviewcontrols

DataGridView - how to set column width?


I have a WinForms application with DataGridView control. My control has five columns (say "Name", "Address", "Phone" etc)

I am not happy with default column width. I want to have more control over column appearance. What I want is to be able to do one of the following:

  • Set width of each column in percent
  • Set width of each column in pixels
  • Use some other best-practive method (make width to fit text etc)

Please suggest - which property to use and how.


Solution

  • You can use the DataGridViewColumn.Width property to do it:

    DataGridViewColumn column = dataGridView.Columns[0];
    column.Width = 60;
    

    http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridviewcolumn.width.aspx