33
|
1 |
<s:SurfaceWindow x:Class="SliderTest.SurfaceWindow1"
|
|
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 |
Title="SliderTest" Activated="SurfaceWindow_Activated"
|
|
6 |
>
|
|
7 |
<s:SurfaceWindow.Resources>
|
|
8 |
<ImageBrush x:Key="WindowBackground" Stretch="None" Opacity="0.6" ImageSource="pack://application:,,,/Resources/WindowBackground.jpg"/>
|
|
9 |
</s:SurfaceWindow.Resources>
|
|
10 |
|
|
11 |
<Grid Background="{StaticResource WindowBackground}" >
|
|
12 |
<s:SurfaceSlider Margin="106,89,147,0" VerticalAlignment="Top" Height="24" x:Name="slider" Thumb.DragStarted="sliderPosition_DragStarted" Thumb.DragCompleted="sliderPosition_DragCompleted"/>
|
|
13 |
<MediaElement Margin="147,189,232,126" Source="Butterfly.wmv" x:Name="media" MediaOpened="media_MediaOpened"/>
|
|
14 |
<Button HorizontalAlignment="Right" Margin="0,217,25,0" VerticalAlignment="Top" Width="77" Height="32" Content="Button" x:Name="buttonPlay" Click="buttonPlay_Click"/>
|
|
15 |
<s:SurfaceButton HorizontalAlignment="Right" Margin="0,0,25,190" VerticalAlignment="Bottom" Width="77" Height="36" Content="SurfaceButton" x:Name="surfacebuttonPlay" ContactDown="surfacebuttonPlay_ContactDown" Click="surfacebuttonPlay_Click"/>
|
|
16 |
|
|
17 |
</Grid>
|
|
18 |
</s:SurfaceWindow>
|