Is there a way to hide resize & selection column when I add some data in DataGrid's ItemSource?
DataGrid
ItemSource
This is the row selector column and it can be hidden using the HeadersVisibility property.
HeadersVisibility
<DataGrid ... HeadersVisibility="Column">
A value of Column show all column headers but hides the row selectors, see possible values here.
Column