Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.70 KB  |  hits: 24  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <Grid x:Name="LayoutRoot" Background="Transparent">
  2.     <Rectangle x:Name="_previewRect"
  3.                Margin="0"
  4.                Height="800"
  5.                Width="600"
  6.                HorizontalAlignment="Center"
  7.                VerticalAlignment="Center">
  8.         <Rectangle.Fill>
  9.             <VideoBrush x:Name="_previewVideo">
  10.                 <VideoBrush.RelativeTransform>
  11.                     <CompositeTransform  
  12.                         x:Name="_previewTransform" CenterX=".5" CenterY=".5" />
  13.                 </VideoBrush.RelativeTransform>
  14.             </VideoBrush>
  15.         </Rectangle.Fill>
  16.     </Rectangle>
  17.     <ListBox Margin="10" x:Name="_matchesList" FontSize="30" FontWeight="ExtraBold" />
  18. </Grid>