hide row selector on datagrid

  • Thread starter Thread starter Matt Tapia
  • Start date Start date
M

Matt Tapia

there is an initial column on a datagrid that I call a row selector. It is
essentially a column with a triangle pointing to the right and you can
select the entire row by clicking on it.....

is there anyway to hide the row selector on a datagrid?
 
They're called row headers and you can hide them by setting the DataGrid's
"RowHeadersVisible" property to false. If you're using a custom
DataGridTableStyle then you might need to set this objects
"RowHeadersVisible" property to false instead.

--
Tim Wilson
..Net Compact Framework MVP

<Feedback>
Do have an opinion on the effectiveness of Microsoft Windows Mobile and
Embedded newsgroups? Let us know!
https://www.windowsembeddedeval.com/community/newsgroups
</Feedback>
 
Back
Top