I created a Windows Form that shows some data in a DataGridView. I don't like this little triangle here in the image below (in the red circle).
How can I hide it so I just see the data and I save space?
CodePudding user response:
DataGridView.RowHeadersVisible =false;

