55
|
1 |
<UserControl x:Class="FingersDance.Views.TimelineView"
|
|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
4 |
Height="300" Width="300">
|
|
5 |
<Grid>
|
|
6 |
<TextBlock Text="{Binding Path=Title}" Height="27" VerticalAlignment="Top" Margin="0,0,132,0" />
|
|
7 |
<ListView Margin="0,25,0,0"
|
|
8 |
DataContext="{Binding Path=AnnotList}"
|
|
9 |
ItemsSource="{Binding}">
|
|
10 |
<ListView.View>
|
|
11 |
<GridView>
|
|
12 |
<GridViewColumn
|
|
13 |
Header="Gesture Type"
|
69
|
14 |
DisplayMemberBinding="{Binding Path=GestureType}" />
|
|
15 |
<GridViewColumn
|
|
16 |
Header="Tc Begin"
|
|
17 |
DisplayMemberBinding="{Binding Path=TcBegin}" />
|
|
18 |
<GridViewColumn
|
|
19 |
Header="Dur"
|
|
20 |
DisplayMemberBinding="{Binding Path=Dur}" />
|
55
|
21 |
</GridView>
|
|
22 |
</ListView.View>
|
|
23 |
</ListView>
|
|
24 |
</Grid>
|
|
25 |
</UserControl>
|