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"
|
|
8 |
x:Name="UserControl"
|
34
|
9 |
d:DesignWidth="575" xmlns:Custom="http://schemas.microsoft.com/surface/2008" Height="Auto" Background="#FF898686">
|
10
|
10 |
|
34
|
11 |
<StackPanel x:Name="LayoutRoot" Width="Auto" Height="Auto" Background="#4CFCFCFC">
|
|
12 |
<Custom:SurfaceSlider Height="27" x:Name="slider" Value="0.5" Width="575" Thumb.DragStarted="sliderPosition_DragStarted" Thumb.DragCompleted="sliderPosition_DragCompleted" />
|
|
13 |
</StackPanel>
|
10
|
14 |
</UserControl> |