I am trying to find out how to read the value of my WPF datagrid cells.
something along the lines of
String myString = myDataGrid.Cells[1][2].ToStr
This might help someone else.
foreach (DataRowView row in dgLista.SelectedItems) { string text = row.Row.ItemArray[index].ToString(); }
Good luck!