■ TextBlock 클래스의 Foreground 속성 값으로 VideoBrush 엘리먼트를 사용하는 방법을 보여준다.
▶ 예제 코드 (XAML)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<Grid x:Name="rootGrid" Background="White"> <MediaElement x:Name="mediaElement" IsHitTestVisible="False" IsMuted="True" Opacity="0.0" Source="http://127.0.0.1/Butterfly.wmv" /> <TextBlock HorizontalAlignment="Center" VerticalAlignment="Center" FontFamily="Verdana" FontSize="120" FontWeight="Bold" TextWrapping="Wrap" Text="Video"> <TextBlock.Foreground> <VideoBrush Stretch="UniformToFill" SourceName="mediaElement" /> </TextBlock.Foreground> </TextBlock> </Grid> |