src/FingersDance.Views/TimelineView.xaml
changeset 55 1ec0ef228158
child 69 a4c44555f205
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/FingersDance.Views/TimelineView.xaml	Tue Sep 15 13:30:58 2009 +0200
@@ -0,0 +1,20 @@
+<UserControl x:Class="FingersDance.Views.TimelineView"
+    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
+    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+    Height="300" Width="300">
+    <Grid>
+        <TextBlock Text="{Binding Path=Title}" Height="27" VerticalAlignment="Top" Margin="0,0,132,0" />
+        <ListView Margin="0,25,0,0"
+                  DataContext="{Binding Path=AnnotList}"
+                  ItemsSource="{Binding}">
+            <ListView.View>
+                <GridView>
+                    <GridViewColumn 
+                        Header="Gesture Type"
+                        DisplayMemberBinding="{Binding Path=GestureType}" 
+                    />
+                </GridView>
+            </ListView.View>
+        </ListView>
+    </Grid>
+</UserControl>