Get selected row item in DataGrid WPF Get selected row item in DataGrid WPF wpf wpf

Get selected row item in DataGrid WPF


You can use the SelectedItem property to get the currently selected object, which you can then cast into the correct type. For instance, if your DataGrid is bound to a collection of Customer objects you could do this:

Customer customer = (Customer)myDataGrid.SelectedItem;

Alternatively you can bind SelectedItem to your source class or ViewModel.

<Grid DataContext="MyViewModel">    <DataGrid ItemsSource="{Binding Path=Customers}"              SelectedItem="{Binding Path=SelectedCustomer, Mode=TwoWay}"/></Grid>


If you're using the MVVM pattern you can bind a SelectedRecord property of your VM with SelectedItem of the DataGrid, this way you always have the SelectedValue in you VM.Otherwise you should use the SelectedIndex property of the DataGrid.


public IEnumerable<DataGridRow> GetDataGridRows(DataGrid grid){    var itemsSource = grid.ItemsSource as IEnumerable;    if (null == itemsSource) yield return null;    foreach (var item in itemsSource)    {        var row = grid.ItemContainerGenerator.ContainerFromItem(item) as DataGridRow;        if (null != row) yield return row;    }}private void DataGrid_Details_SelectionChanged(object sender, SelectionChangedEventArgs e){    try    {                   var row_list = GetDataGridRows(DataGrid_Details);        foreach (DataGridRow single_row in row_lis)        {            if (single_row.IsSelected == true)            {                MessageBox.Show("the row no."+single_row .GetIndex ().ToString ()+ " is selected!");            }        }    }    catch { }}