I have a DataGrid for search results, that I want the user to be able to click on a row, and it load that customer's details. The first index of the row (index position 0) has the ID in, so once I get the selected row it will be very simple, however, I'm having trouble extracting this information. Is there a way to do something like:
string ID = myGrid.selectedRow[0].ToString();
I already have the selectionChanged event programmed and triggering, I just can't seem to get the data out..