In Xamarin.Forms we want to add a new button using
f001content = new Xamarin.Forms.AbsoluteLayout;
f001content.Children.Add(new Button
{
Text = "Button",
AutomationId = "MyButton",
}, new Rectangle(0,0,100,40));
How can we find the reference to the button just added so that we can modify it in the future?