如何将 css 样式应用于 TextCell 并更改 TextColor

How to apply css styles to TextCell and change TextColor

我想更改 ListViewTextCellTextColor CSS 样式。

我尝试了以下方法,但颜色没有改变:

MenuPage TextCell {
    color: aqua;
    textcolor: aqua;
    text-color: aqua;
    TextColor: aqua;
}

我对 TextCell 的运气不佳。但是如果你可以让它成为 ViewCell 中的标签:

<ListView.ItemTemplate>
    <DataTemplate>
        <ViewCell>
            <StackLayout>
                <Label Text="{Binding}" />
            </StackLayout>
        </ViewCell>
    </DataTemplate>
</ListView.ItemTemplate>

然后你可以用 CSS:

设置样式
ListView StackLayout Label {
    font-size: 14;
    color: black;
}