Dev/Silveright
[Silverright] VideoBrush 만들기
쇼크리더
2008. 7. 22. 00:25
반응형
소스 :
<Canvas
xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="640" Height="480"
Background="White"
x:Name="Page">
<!--영상화면-->
<MediaElement x:Name="playMovie" Width="427" Height="236" Canvas.Left="37" Canvas.Top="65" Source="./media/Tell me.wmv" IsMuted="true" Opacity="0.0" IsHitTestVisible="False" AutoPlay="true" Stretch="Fill" Volume="0.3" />
<TextBlock Canvas.Left="37" Canvas.Top="105" TextWrapping="Wrap" FontSize="150" Text="Video">
<TextBlock.Foreground>
<VideoBrush SourceName="playMovie" Stretch="UniformToFill"/>
</TextBlock.Foreground>
</TextBlock>
</Canvas>
xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="640" Height="480"
Background="White"
x:Name="Page">
<!--영상화면-->
<MediaElement x:Name="playMovie" Width="427" Height="236" Canvas.Left="37" Canvas.Top="65" Source="./media/Tell me.wmv" IsMuted="true" Opacity="0.0" IsHitTestVisible="False" AutoPlay="true" Stretch="Fill" Volume="0.3" />
<TextBlock Canvas.Left="37" Canvas.Top="105" TextWrapping="Wrap" FontSize="150" Text="Video">
<TextBlock.Foreground>
<VideoBrush SourceName="playMovie" Stretch="UniformToFill"/>
</TextBlock.Foreground>
</TextBlock>
</Canvas>

소스다운
- Tell me.wmv 미포함
반응형