Hey Team,
I have a question about how to modify only parts of components' TextColor which are included in ListView's TemplateCell if we disabled ListView.
For example, I have a DataTemplate which has two parts(right side, left side) , if I disabled listview, can we only modify right side TextColor to a Color?
For below code I just want to modify Description TextColor to a Color if we disabled ListView.
<DataTemplate>
<telerik:ListViewTemplateCell>
<telerik:ListViewTemplateCell.View>
<Grid x:Name="RadDockLayout"
BackgroundColor="Gray">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="152" />
<ColumnDefinition Width="152" />
</Grid.ColumnDefinitions>
<Label HorizontalOptions="Start"
Text="{Binding Name}"
TextColor="White" />
<Label Grid.Column="1"
HorizontalOptions="End"
Text="{Binding Description}"
TextColor="White" />
</Grid>
</telerik:ListViewTemplateCell.View>
</telerik:ListViewTemplateCell>
</DataTemplate>
Thanks
Allen