Dear all,
I use the xamDataGrid for the first time. I have binded the grid with a data table.
When I select one record, I want to popup the information of the current row.
How can i get it?
Thanks.
You can get the selected rows using:
foreach (DataRecord rec in dataGrid.SelectedItems.Records) { //Do something like (DataRowView)rec.DataItem; if needed}
-Mike