我正在开发一个跨平台的游戏板(WPF和Android)。 我在scrollView布局中有一个网格,并且在每个单元格中给它充气 单元格自定义控件
df1
问题在于,Android中的控件不像WPF中那样透明。
请参阅:
WPF
Android
答案 0 :(得分:1)
尝试为Transparent
使用Frame
背景色:
<ContentView.Content>
<Frame x:Name ="fr" BackgroundColor="Transparent" BorderColor="Black" Padding="0">
<Grid HorizontalOptions="FillAndExpand" >
<Grid.RowDefinitions>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<Label Grid.Row="0" x:Name="txt"/>
<Image Grid.Row="0" x:Name="img"/>
</Grid>
</Frame>
</ContentView.Content>