wpf loop through grid rows

68

wpf loop through grid rows -

foreach (DataRowView dr in grid.ItemsSource)
{
     MessageBox.Show(dr[0]);
}

Comments

Submit
0 Comments