iOS 上的单元格背景色

此 iOS 平台特定功能设置 Cell 实例的默认背景色。 其使用方式为,在 XAML 中将 Cell.DefaultBackgroundColor 可绑定属性设置为 Color

<ContentPage ...
             xmlns:ios="clr-namespace:Xamarin.Forms.PlatformConfiguration.iOSSpecific;assembly=Xamarin.Forms.Core">
    <StackLayout Margin="20">
        <ListView ItemsSource="{Binding GroupedEmployees}"
                  IsGroupingEnabled="true">
            <ListView.GroupHeaderTemplate>
                <DataTemplate>
                    <ViewCell ios:Cell.DefaultBackgroundColor="Teal">
                        <Label Margin="10,10"
                               Text="{Binding Key}"
                               FontAttributes="Bold" />
                    </ViewCell>
                </DataTemplate>
            </ListView.GroupHeaderTemplate>
            ...
        </ListView>
    </StackLayout>
</ContentPage>

或者,可以使用 Fluent API 从 C# 使用它:

using Xamarin.Forms.PlatformConfiguration;
using Xamarin.Forms.PlatformConfiguration.iOSSpecific;
...

var viewCell = new ViewCell { View = ... };
viewCell.On<iOS>().SetDefaultBackgroundColor(Color.Teal);

ListView.On<iOS> 方法指定此平台特定功能仅在 iOS 上运行。 Xamarin.Forms.PlatformConfiguration.iOSSpecific 命名空间中的 Cell.SetDefaultBackgroundColor 方法可将单元格背景色设置为指定的 Color。 此外,Cell.DefaultBackgroundColor 方法还可用于检索当前单元格背景色。

结果是,Cell 中的背景色可以设置为特定的 Color

iOS 上的 Teal 组标题单元格的屏幕截图