I'm not sure exactly what you are asking for, but I think this is what you want:
In the handler for the datagrid SelectedIndexChanged event, you simply can ask the datagrid item that was selected for the text of a particular column:
e.Item.Cells(x).Text
This will give you the text in the cell of column x for the selected row.
|