Wrapping Text in a DataGridView
I thought that wrapping text in a datagridview would be a problem, but it turned out to be really simple. All you have to do is to change a setting in the DefaultCellStyle. This property represents a style of the cell, and has a WrapMode object, which by setting to true, means that text within the cell will automatically wrap according to the width specified. Pretty easy.