author | cavaliet |
Thu, 17 Sep 2009 13:06:22 +0200 | |
changeset 74 | 7ce946833eae |
parent 69 | a4c44555f205 |
child 92 | 3a0b48be34bd |
permissions | -rw-r--r-- |
10 | 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 |
mc:Ignorable="d" |
|
7 |
x:Class="FingersDance.Control.TimeLine.UserControlTimeLine" |
|
69 | 8 |
xmlns:vw="clr-namespace:FingersDance.Views;assembly=FingersDance.Views" |
10 | 9 |
x:Name="UserControl" |
74
7ce946833eae
First step of data binding where we can add an annotation by clicking on the timeline
cavaliet
parents:
69
diff
changeset
|
10 |
d:DesignWidth="383" xmlns:Custom="http://schemas.microsoft.com/surface/2008" Background="{x:Null}" d:DesignHeight="33"> |
10 | 11 |
|
46
f1a26ca4177e
Travail sur le UserControlPivot + changement de design.
sarias
parents:
35
diff
changeset
|
12 |
<Grid x:Name="LayoutRoot" Width="Auto" Height="Auto" Background="{x:Null}"> |
74
7ce946833eae
First step of data binding where we can add an annotation by clicking on the timeline
cavaliet
parents:
69
diff
changeset
|
13 |
<Custom:SurfaceSlider Height="Auto" x:Name="slider" Value="0.5" Width="Auto" |
7ce946833eae
First step of data binding where we can add an annotation by clicking on the timeline
cavaliet
parents:
69
diff
changeset
|
14 |
Thumb.DragStarted="sliderPosition_DragStarted" Thumb.DragCompleted="sliderPosition_DragCompleted" ContactTapGesture="slider_ContactTapGesture" |
7ce946833eae
First step of data binding where we can add an annotation by clicking on the timeline
cavaliet
parents:
69
diff
changeset
|
15 |
Margin="0,0,30,0" Background="#19FFFFFF" /> |
7ce946833eae
First step of data binding where we can add an annotation by clicking on the timeline
cavaliet
parents:
69
diff
changeset
|
16 |
<vw:TimelineView x:Name="tv" Margin="0,30,0,0"/> |
69 | 17 |
</Grid> |
10 | 18 |
</UserControl> |