I have a list of a specific class type Person and I want to make a DataGrid with it.
Person
DataGrid
private void DataGrid_Loaded(object sender, Ro
Try HeaderText instead of Header like this :
myDataGrid.Columns[0].HeaderText="First Name"; myDataGrid.Columns[1].HeaderText="Last Name";