I'm creating a WPF application in which when a user clicks on a Row of the DataGrid, I need to take a Column value and using that value I need to get data from Database.
I'm able to Find the DataGridRow but unable to get the column values. Here is my code ...
DataGridRow BillRow = sender as DataGridRow;
I get the selected row details into BillRow (I'm able to see them in Visualiser) but unable to get the values into a variable. Can you help me ??