PageRenderTime 42ms CodeModel.GetById 19ms RepoModel.GetById 1ms app.codeStats 0ms

/GammaJul.LgLcd.Samples.Wpf/SampleControl.xaml

#
XAML | 14 lines | 13 code | 1 blank | 0 comment | 0 complexity | ed02e50ba65fddf00af9da69fb6b5128 MD5 | raw file
Possible License(s): LGPL-2.1
  1. <UserControl
  2. x:Class="GammaJul.LgLcd.Samples.Wpf.SampleControl"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. Width="320" Height="240">
  6. <Grid>
  7. <Image x:Name="Img" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Stretch="UniformToFill" />
  8. <Path VerticalAlignment="Center" HorizontalAlignment="Left" Fill="#20FFFFFF" Stroke="#AAFFFFFF"
  9. Data="M8,0 L0,7 L8,14 Z" Margin="4,0,0,0" />
  10. <Path VerticalAlignment="Center" HorizontalAlignment="Right" Fill="#20FFFFFF" Stroke="#AAFFFFFF"
  11. Data="M0,0 L8,7 L0,14 Z" Margin="0,0,4,0" />
  12. </Grid>
  13. </UserControl>