Hi,
I am adding Entry controls to a Grid control. I want to move to next row in the Grid when the user press "Enter", I have the code below, but it seems to be not working, at least I don't see the output, also, how can a move the focus to next row? Thanks.
`
var entry = new Entry {
Text = "",
TextColor = Color.Black,
BackgroundColor = Color.White,
};
entry.Completed += (sender, e) => {
System.Diagnostics.Debug.WriteLine ("Completed pressed");
//TODO: move to next line.
};
grid.Children.Add (entry, 0, i);
`