I\'m having a DataGrid to list the MobileInfo Collection. The DataGrid is Configured with SelectionUnit=\"FullRow\". If I Click the any Row then it selects the
SelectionUnit=\"FullRow\"
you can simply use CurrentCellChanged Event in DataGrid xaml.
CurrentCellChanged="DataGrid_CurrentCellChanged"
code...
private void DataGrid_CurrentCellChanged(object sender, EventArgs e) { var grid = sender as DataGrid; var cell = grid.CurrentCell.Item; }