I have a itemscontrol as below
<StackPanel>
<ItemsControl Name="PlannerItemControl" Grid.Row="0" Grid.Column="0">
<ItemsControl.ItemTemplate>
<DataTemplate>
<Grid Name="MainGrid" Style="{StaticResource VisibleKey}">
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="35" />
</Grid.RowDefinitions>
<Label Grid.Row="1" Grid.Column="2" Name="lblTimeText" Content="{Binding ID}" HorizontalAlignment="Center"/>
</Grid>
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>
</StackPanel>
<Label Grid.Row="1" Grid.Column="2" Name="lblTime2" Content="{Binding ID}" HorizontalAlignment="Center"/>
Is it possible to retrieve the value of ID from the itemscontrol outside of the itemscontrol? Basically I want the value of Label lblTimeText in label lblTime2. Please help.