I have seen this question but in my case when I type Clicked=""
and choose the option to create the handler I see this:
It won't let me create a handler.
Code snippet:
<RelativeLayout HorizontalOptions="FillAndExpand">
<Button x:Name="btnAddElder" Text="Add" RelativeLayout.XConstraint="{ConstraintExpression Type=RelativeToParent, Property=Width, Factor=.0000, Constant=0}"
RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToParent, Property=Width, Factor=.3333, Constant=0}" />
<Button x:Name="btnEditElder" Text="Edit" RelativeLayout.XConstraint="{ConstraintExpression Type=RelativeToParent, Property=Width, Factor=.3333, Constant=0}"
RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToParent, Property=Width,Factor=.3333,Constant=0}" />
<Button x:Name="btnDeleteElder" Text="Delete" RelativeLayout.XConstraint="{ConstraintExpression Type=RelativeToParent, Property=Width, Factor=.6666, Constant=0}"
RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToParent, Property=Width, Factor=.3333, Constant=0}" />
</RelativeLayout>
Thanks for your advice.