Hi Val,
You could try this out:
foreach (object item in TestGrid.Items)
{
Xceed.Wpf.DataGrid.DataRow dr = TestGrid.GetContainerFromItem(item) as Xceed.Wpf.DataGrid.DataRow;
}
where TestGrid is your Xceed DataGridControl.
Just one thing to take note, this method only returns the rows after the Grid is initialized and rendered. I tried looping through this during the initialization of the grid, and even though there are already the items in the datagrid, the datarow object was not yet created
Cheerios,
Serene
"ASCII and ye shall receive."