Adding events to ScatterViewItems when implicitly creating them
- by James Hay
Not sure there's too many surface developers on here but hey ho...
If i have a scatterview which implicity creates the ScatterViewItem objects (see below), is it possible to retireve the contact events for each scatterViewItem? Also when i wrap tyhe image object in a ScatterViewItem explicitly the item no longer works. Could anyone advise as to why this is the case?
<s:ScatterView ItemsSource="{StaticResource DummyData}" >
<s:ScatterView.ItemTemplate>
<DataTemplate>
<Image Source="{Binding Path=ImagePath}" />
</DataTemplate>
</s:ScatterView.ItemTemplate>
</s:ScatterView>