view johndyer-mediaelement-13fa20a/src/silverlight/MainPage.xaml @ 0:032bc65ebafc

added core components
author George Fazekas <gyorgy.fazekas@eecs.qmul.ac.uk>
date Wed, 06 Mar 2013 15:45:48 +0000
parents
children
line wrap: on
line source

<UserControl x:Class="SilverlightMediaElement.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
Width="640" Height="360">
    <Grid x:Name="LayoutRoot" Background="Black" Width="640" Height="360">

        <MediaElement Grid.Row="0" Grid.Column="0" Width="640" Height="360" AutoPlay="false" Name="media"
                       ></MediaElement>
        <TextBox Margin="25,25,0,0" Name="textBox1" VerticalScrollBarVisibility="Auto" Height="146" VerticalAlignment="Top" HorizontalAlignment="Left" Width="235" />
        <Button Content="Go Fullscreen" Height="23" HorizontalAlignment="Right" Margin="0,12,12,0" Name="FullscreenButton" VerticalAlignment="Top" Width="93" Click="FullscreenButton_Click" />
    </Grid>
</UserControl>