0
私はこのような何か見てする必要があり、私のXamarin.Formsプロジェクトでページを持っている:私は、何の問題を赤と青のボックスを配置することはできませんXamarin.Forms - 別の要素の上に位置する要素。
を。しかし、私は緑色のものを作る方法を理解できません。
私が使用するXAMLは次のとおりです。
<StackLayout HorizontalOptions="FillAndExpand">
<StackLayout VerticalOptions="FillAndExpand" BackgroundColor="Red">
//I'm thinking the green box should be positioned absolutely in here or something?
</StackLayout>
<StackLayout VerticalOptions="End" BackgroundColor="Blue">
<Grid VerticalOptions="EndAndExpand">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="1*"></ColumnDefinition>
</Grid.ColumnDefinitions>
<Button Grid.Column="0" Text="Button" HorizontalOptions="FillAndExpand" BorderRadius="0" VerticalOptions="EndAndExpand" HeightRequest="50" TextColor="White" BackgroundColor="#85C034"></Button>
</Grid>
</StackLayout>
</StackLayout>
右、それはほとんどあります。しかし、私はまた、赤い背景をカバーするものが必要です。画像やBoxViewなど、緑色のテキストボックスが表示される場所など。何らかの理由で、 のようなものを赤のContentViewの中に配置すると、何も表示されません。 –
Fayze