How to resize datagridview control when form resizes

前端 未结 12 1287
终归单人心
终归单人心 2020-12-29 18:30

I found a lot of questions about how to resize the form when a child control resizes, but I\'m trying to do something much simpler (maybe so simple people don\'t even ask it

12条回答
  •  南方客
    南方客 (楼主)
    2020-12-29 19:09

    If you want to show the complete headers text

    this will auto resize the columns so that the headers will show complete header text.

    dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.AllCells;
    

    For Dock Mode

    If you want to show the Dock Mode in your panel or form.

    dataGridView1.AutoSizeColumnsMode = DataGridViewAutoSizeColumnsMode.Fill;
    

提交回复
热议问题