34
|
1 |
<s:SurfaceWindow
|
|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
4 |
xmlns:s="http://schemas.microsoft.com/surface/2008"
|
|
5 |
xmlns:FingersDance_Control_Player="clr-namespace:FingersDance.Control.Player;assembly=FingersDance.Control.Player"
|
|
6 |
xmlns:FingersDance_Control_TimeLine="clr-namespace:FingersDance.Control.TimeLine;assembly=FingersDance.Control.TimeLine"
|
|
7 |
x:Class="FingersDance.Control.UserPanel.SurfaceWindow1"
|
|
8 |
Title="FingersDance.Control.UserPanel"
|
|
9 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d" Activated="SurfaceWindow_Activated"
|
|
10 |
>
|
|
11 |
<s:SurfaceWindow.Resources>
|
|
12 |
<ImageBrush x:Key="WindowBackground" Stretch="None" Opacity="0.6" ImageSource="pack://application:,,,/Resources/WindowBackground.jpg"/>
|
|
13 |
</s:SurfaceWindow.Resources>
|
|
14 |
|
|
15 |
<Grid Background="{StaticResource WindowBackground}" >
|
|
16 |
<FingersDance_Control_TimeLine:UserControlTimeLine Margin="182,89,206,0" VerticalAlignment="Top" Height="34" x:Name="UserControlTimeLine" DragStarted="UserControlTimeLine_DragStarted" DragCompleted="UserControlTimeLine_DragCompleted" TimerTick="UserControlTimeLine_TimerTick"/>
|
|
17 |
<FingersDance_Control_Player:UserControlPlayer d:LayoutOverrides="Margin" Margin="196.064,196.452,220.064,74.452" PlayerOpened="UserControlPlayer_PlayerOpened" x:Name="UserControlPlayer" />
|
|
18 |
</Grid>
|
|
19 |
</s:SurfaceWindow>
|