我想用CSS样式更改 ListView 中 TextCell 的 TextColor 。
我尝试了以下操作,但颜色保持不变:
MenuPage TextCell {
color: aqua;
textcolor: aqua;
text-color: aqua;
TextColor: aqua;
}
答案 0 :(得分:0)
我对TextCell没有好运。但是,如果您可以在ViewCell中将其设为标签:
<ListView.ItemTemplate>
<DataTemplate>
<ViewCell>
<StackLayout>
<Label Text="{Binding}" />
</StackLayout>
</ViewCell>
</DataTemplate>
</ListView.ItemTemplate>
然后您可以使用CSS设置样式:
ListView StackLayout Label {
font-size: 14;
color: black;
}