Advertisement
Guest User

Untitled

a guest
Apr 1st, 2013
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.39 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3.  
  4.   <Grid.Background>
  5.     <LinearGradientBrush>
  6.       <GradientStop Color="#FF3B596E" />
  7.       <GradientStop Color="#FF93C5E8" Offset="1" />
  8.     </LinearGradientBrush>
  9.   </Grid.Background>
  10.   <Grid.RowDefinitions>
  11.     <RowDefinition Height="80" />
  12.     <RowDefinition Height="600" />
  13.     <RowDefinition Height="80" />
  14.   </Grid.RowDefinitions>
  15.   <Grid.ColumnDefinitions>
  16.     <ColumnDefinition Width="2*" />
  17.     <ColumnDefinition Width="6*" />
  18.     <ColumnDefinition Width="2*" />
  19.   </Grid.ColumnDefinitions>
  20.   <Canvas Grid.Column="1" Grid.Row="1" Canvas.Top="50">
  21.     <Canvas.Background>
  22.       <LinearGradientBrush>
  23.         <GradientStop Color="#FF93C5E8" />
  24.         <GradientStop Color="#FF3B596E" Offset="1" />
  25.       </LinearGradientBrush>
  26.     </Canvas.Background>
  27.    
  28.     <Border Background="#FF0093DD" BorderThickness="1" Canvas.Top="50" Canvas.Left="80" Height="25" Width="200">
  29.       <TextBlock VerticalAlignment="center" TextAlignment="center" FontSize="10" Foreground="White">N° of correct responses</TextBlock>
  30.     </Border>
  31.    
  32.     <Border Canvas.Top="40" Canvas.Left="359.0" Height="30" Width="60">
  33.       <TextBlock FontSize="12" Foreground="White">Accuracy</TextBlock>
  34.     </Border>
  35.      
  36.   </Canvas>
  37. </Grid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement