I want to get value for selected cell in datagrid , please anyone tell how to do this. i used SelectedCell changed event , how can i do that?
dataGrid1.Curre
Worked For me
object item = dgwLoadItems.SelectedItem; string ID = (dgwLoadItems.SelectedCells[0].Column.GetCellContent(item) as TextBlock).Text; MessageBox.Show(ID);