C#: multiline text in DataGridView control

前端 未结 7 837
[愿得一人]
[愿得一人] 2020-11-27 21:12

Is it possible for the DataGridView control to display multiline text in a cell?

I am using Visual Studio 2005 and C#.

7条回答
  •  我在风中等你
    2020-11-27 22:09

    In my case, I got it to work this way (in addition to setting both AutoSizeRowsMode to AllCells and AutoSizeColumnsMode to AllCells):

    dgvTwinReverb.Columns[PEANUT_GALLERY_COLUMN].DefaultCellStyle.WrapMode = DataGridViewTriState.True;
    dgvTwinReverb.Columns[PEANUT_GALLERY_COLUMN].MinimumWidth = PEANUT_GALLERY_COLUMN_DESIRED_WIDTH;
    

提交回复
热议问题