Is it possible to get rid of the "row-Select-button" on the DataGridView?

CodePudding user response:
Set RawHeadersVisible false. See the picture for reference.
Or from the code you can do like
dgOrderList.RowHeadersVisible = false;

Is it possible to get rid of the "row-Select-button" on the DataGridView?

CodePudding user response:
Set RawHeadersVisible false. See the picture for reference.
Or from the code you can do like
dgOrderList.RowHeadersVisible = false;