35
|
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 |
xmlns:FingersDance_Control_Player="clr-namespace:FingersDance.Control.Player;assembly=FingersDance.Control.Player"
|
|
8 |
xmlns:FingersDance_Control_TimeLine="clr-namespace:FingersDance.Control.TimeLine;assembly=FingersDance.Control.TimeLine"
|
|
9 |
x:Class="FingersDance.Control.SyncSource.UserControlSyncSource"
|
|
10 |
x:Name="UserControl" Height="384" Width="512">
|
|
11 |
|
|
12 |
<Grid x:Name="LayoutRoot" Height="192" Width="256">
|
|
13 |
<FingersDance_Control_TimeLine:UserControlTimeLine Margin="-127,-91,-131,0" VerticalAlignment="Top" Height="31" x:Name="UserControlTimeLine" DragStarted="UserControlTimeLine_DragStarted" DragCompleted="UserControlTimeLine_DragCompleted" TimerTick="UserControlTimeLine_TimerTick"/>
|
|
14 |
<FingersDance_Control_Player:UserControlPlayer Margin="-92,-56,-102,-86" PlayerOpened="UserControlPlayer_PlayerOpened" x:Name="UserControlPlayer" d:LayoutOverrides="HorizontalAlignment" />
|
|
15 |
</Grid>
|
|
16 |
</UserControl> |