Sor far I have:
<Grid x:Name="MainLibraryGrid">
<TabControl Name="TabControl1" TabStripPlacement="Bottom">
<TabItem Header="300s">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<!-- The Library-items -->
<ListView x:Name="libraryItemsCol1"
Grid.Column="0"
HorizontalAlignment="Center"
Margin="10"
VerticalAlignment="Center"
ItemContainerStyle="{StaticResource LibraryItemButton}" />
<ListView x:Name="libraryItemsCol2"
Grid.Column="1"
HorizontalAlignment="Center"
Margin="10"
VerticalAlignment="Center"
ItemContainerStyle="{StaticResource LibraryItemButton}" />
<ListView x:Name="libraryItemsCol3"
Grid.Column="2"
HorizontalAlignment="Center"
Margin="10"
VerticalAlignment="Center"
ItemContainerStyle="{StaticResource LibraryItemButton}" />
</Grid>
</TabItem>
</TabControl>
</Grid>
I'm trying to place an ellipse in the absolutly in the position of any of the ListViewItems clicked, but can't work out the best way to do this. The idea is to have an ellipse appear and then animate it moving to the bottom right corner of the screen, over the top of the rest of the content. Should I use a canvas overlay or something? I'm not really sure where to start!
Thanks very much, Becky