Skip to main content
Home Forums Silverlight Design Video and Media How to put a skyn screen video in MediaElement
2 replies. Latest Post by LuizItatiba on June 12, 2009.
(0)
LuizItatiba
Member
2 points
10 Posts
06-03-2009 1:34 PM |
http://silverlight.net/fox/
Amanda W...
All-Star
17241 points
1,466 Posts
06-10-2009 4:56 AM |
Hi,
LuizItatiba:Creating a Custom Skin Screen TV to embed the video in silverlight media element as a result of the above link
The MediaElement control is basically a rectangular region that can display video on its surface, so if you can want to custome the mediaelement you can try to use other controls to decorate your mediaelement, such as border, button, slider etc.
06-12-2009 3:39 PM |
1 <UserControl x:Class="TesteFullScreenModeMsdn.Page"2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 4 Width="800" Height="400">5 <Grid x:Name="LayoutRoot" Background="White">6 <StackPanel HorizontalAlignment="Left">7 <TextBox Width="250" Margin="20"></TextBox>8 <Button Width="100" Height="30" Content="fullscreen" Click="Button_Click" Margin="20" />9 </StackPanel>10 <MediaElement HorizontalAlignment="Right" x:Name="meVideo" MouseLeftButtonDown="meVideo_MouseLeftButtonDown" />11 </Grid>12 </UserControl>13