I have dataGridView with a particular column. When I write long text in dataGridView it shows me a shortened version, with ellipses, because the column isn\'t wide enough to
To do wrapping add this after binding
DataGrid1.ItemStyle.Wrap = true;