gpt4 book ai didi

xaml - 如何在 Xamarin 的内容 View 中设置背景图像

转载 作者:行者123 更新时间:2023-12-01 23:23:15 25 4
gpt4 key购买 nike

我有一个ContentView,我需要在其中设置背景图像。ContentPage有“BackgroundImage”属性,在ContentView中做什么?在xamarin中可以在ContentView中设置背景图像吗?

最佳答案

在ContentView中使用AbsoluteLayout并将Image与其他控件一起放入AbsoluteLayout中。它可以工作!!

 <ContentView.Content>
<AbsoluteLayout HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">
<Image Source="abc.png" AbsoluteLayout.LayoutBounds="0,0,1,1" AbsoluteLayout.LayoutFlags="All" Aspect="AspectFill"/>
<ScrollView AbsoluteLayout.LayoutBounds="0,0,1,1" AbsoluteLayout.LayoutFlags="All">
<Grid>
......
......
</Grid>
</ScrollView>
</AbsoluteLayout>
</ContentView.Content>

关于xaml - 如何在 Xamarin 的内容 View 中设置背景图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49529935/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com