Hi, in my app I have 2 Each element like this:
<Panel Ux:Name="Header">
<Each Items="{List}">
<Rectangle Height="30." CornerRadius="5" Margin="8,0,0,0">
<Text Alignment="Center" Padding="10,5" Value="{Hour}" FontSize="16" TextColor="#fff" Font="Bold" />
<SolidColor Color="#777" />
</Rectangle>
<Clicked>
</Clicked>
</Each>
</Panel>
<ScrollView>
<StackPanel>
<Each Items="{List}">
<Rectangle List="30." CornerRadius="5" Margin="8,0,0,0">
<Text Alignment="Center" Padding="10,5" Value="{Hour}" FontSize="16" TextColor="#fff" Font="Bold" />
<SolidColor Color="#777" />
</Rectangle>
<Text Value="{Description}" />
</Each>
</StackPanel>
</ScrollView>
I like that when I click in one of the Each element of the header GiveFocus to the Each element of the ScrollView that contain the same {Hour}.
There is any way to achieve this?
Thanks!