Xamarin
A Microsoft open-source app platform for building Android and iOS apps with .NET and C#.
5,366 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello,
I didn't find any way to get all my row cell value in my grid, in my Xamarin form project.
I think the best way is to access to the child element in the row cell, and then get the value, but I am lost.
Thanks
I'm not sure quite what you want to do, but given a Grid grid, the following will iterate through all the children of the Grid, getting the row and column of each. That should get you started.
foreach (View view in grid.Children)
{
int row = Grid.GetRow(view);
int column = Grid.GetColumn(view);
}