WPF bucle a través de filas de cuadrícula

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