我该如何使这项工作?我的目标是制作一个满足屏幕的div,我正在寻找最简单,最恰当的方法,但这不起作用。
<StackLayout VerticalOptions="FillAndExpand" Background="Red">
<Button Text="Button Title"></Button>
</StackLayout>
谢谢。
答案 0 :(得分:1)
该属性应为BackgroundColor。
<StackLayout VerticalOptions="FillAndExpand" BackgroundColor="Red">
<Button Text="Button Title"></Button>
</StackLayout>