Hi, i want to change the color of one specific item inside the each method , how can i achieve that?
<Each Items="{CardAll}">
<DockPanel Margin="0,5,0,0">
<Circle Height="25" Width="25" Dock="Left" Margin="4,0,0,0">
<Stroke Width="2" ux:Name="StrokeCB" Brush="Gray"/>
<Circle Height="20" ux:Name="CercleCB" Width="20" Color="color0" Opacity="0" Visibility="Collapsed"/>
</Circle>
<Text Value="{last4}" Dock="Left" ux:Name="TextCB" Margin="10,0,0,0" FontSize="18" Font="Ubuntu" TextColor="color4" Alignment="Center" TextAlignment="Center"/>
</DockPanel>
<WhileTrue Value="true">
<Change StrokeCB.Brush="Yellow" Duration="0.4" Easing="CubicIn"/>
<Change CercleCB.Brush="Yellow" Duration="0.4" Easing="CubicIn"/>
<Change TextCB.TextColor="Yellow" Duration="0.4" Easing="CubicIn"/>
</WhileTrue>
</Each>