55
|
1 |
<UserControl
|
|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
4 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
5 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
6 |
xmlns:Custom="http://schemas.microsoft.com/surface/2008"
|
|
7 |
mc:Ignorable="d"
|
|
8 |
x:Class="FingersDance.Views.TimelineAnnotationView"
|
71
|
9 |
xmlns:vw="clr-namespace:FingersDance.Views"
|
55
|
10 |
x:Name="UserControl"
|
|
11 |
d:DesignWidth="640" d:DesignHeight="480">
|
71
|
12 |
<UserControl.Resources>
|
|
13 |
<vw:ThicknessSingleValueConverter x:Name="myThicknessSingleValueConverter" x:Key="myThicknessSingleValueConverter"></vw:ThicknessSingleValueConverter>
|
|
14 |
</UserControl.Resources>
|
|
15 |
<Grid x:Name="LayoutRoot" Margin="{Binding Path=TcBegin, Converter={StaticResource myThicknessSingleValueConverter}}">
|
70
|
16 |
<Rectangle Fill="Green" HorizontalAlignment="Left" VerticalAlignment="Top" Width="4" Height="20"/>
|
|
17 |
<TextBox Text="{Binding Path=GestureType}" Width="100" Margin="5,0,0,0"/>
|
55
|
18 |
</Grid>
|
|
19 |
</UserControl> |