Skip to content

Instantly share code, notes, and snippets.

@follesoe
Created July 22, 2011 01:24
Show Gist options
  • Save follesoe/1098650 to your computer and use it in GitHub Desktop.
Save follesoe/1098650 to your computer and use it in GitHub Desktop.
XAML for QR scanner demo
<Grid x:Name="LayoutRoot" Background="Transparent">
<Rectangle x:Name="_previewRect"
Margin="0"
Height="800"
Width="600"
HorizontalAlignment="Center"
VerticalAlignment="Center">
<Rectangle.Fill>
<VideoBrush x:Name="_previewVideo">
<VideoBrush.RelativeTransform>
<CompositeTransform
x:Name="_previewTransform" CenterX=".5" CenterY=".5" />
</VideoBrush.RelativeTransform>
</VideoBrush>
</Rectangle.Fill>
</Rectangle>
<ListBox Margin="10" x:Name="_matchesList" FontSize="30" FontWeight="ExtraBold" />
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment