I have the following XAML
<RelativeLayout>
<Image Source="background.jpg"
RelativeLayout.XConstraint="{ConstraintExpression Type=RelativeToParent, Property=X}"
RelativeLayout.WidthConstraint=
"{ConstraintExpression Type=RelativeToParent, Property=Width}"
RelativeLayout.HeightConstraint=
"{ConstraintExpression Type=RelativeToParent, Property=Height}"/>
<StackLayout
VerticalOptions="FillAndExpand"
Padding="10,10,10,0"
Orientation="Vertical"
RelativeLayout.WidthConstraint="{ConstraintExpression Type=RelativeToParent, Property=Width}"
RelativeLayout.HeightConstraint="{ConstraintExpression Type=RelativeToParent, Property=Height}">
<StackLayout Orientation="Horizontal" HorizontalOptions="FillAndExpand" Margin="0,30,0,10">
<Image Source="icon.png" Margin="0,0,10,0" />
<Label Text="Main menu" HorizontalOptions="FillAndExpand" Style="{DynamicResource TitleStyle}" />
</StackLayout>
</StackLayout>
</RelativeLayout>
This renders the image in the middle of the content, how would I get it to render at the top of the content using XAML?