79321062

Date: 2025-01-01 02:09:32
Score: 1.5
Natty:
Report link

If you wish to set the Resizable of all rows of the Datagridview to false, you can try to use the Row Template to Customize Rows in the Windows Forms DataGridView Control.

DataGridViewRow row = this.dataGridView1.RowTemplate;
row.Resizable = DataGridViewTriState.False;
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Jiachen Li-MSFT