Please help me, Im trying to get the value of Cell[0] from the selected row in a SelectionChangedEvent.
I am only managing to get lots of different Microsoft.Windows
This will give you the current selected row in the DataGrid in WPF:-
DataRow dtr = ((System.Data.DataRowView)(DataGrid1.SelectedValue)).Row;
Now to get the cell value just write dtr[0], dtr["ID"], etc.
dtr[0]
dtr["ID"]